Commit 44d0a736 by Yuly Novikov Committed by Commit Bot

Disable some DrawBuffersTest on Windows AMD OpenGL

DrawBuffersTest.FirstAndLast/ES2_OPENGL DrawBuffersTest.FirstHalfNULL/ES2_OPENGL Hang on Win7 Release (ATI) and Win7 Debug (ATI) bots. BUG=angleproject:1533 Change-Id: I6e37893fbcdbcc7a2a76c1cab6e8ef1f7ebaec19 Reviewed-on: https://chromium-review.googlesource.com/387714Reviewed-by: 's avatarYuly Novikov <ynovikov@chromium.org> Commit-Queue: Yuly Novikov <ynovikov@chromium.org>
parent 93561c3a
...@@ -287,6 +287,13 @@ TEST_P(DrawBuffersTest, FirstAndLast) ...@@ -287,6 +287,13 @@ TEST_P(DrawBuffersTest, FirstAndLast)
return; return;
} }
if (IsWindows() && IsAMD() && IsDesktopOpenGL())
{
// TODO(ynovikov): Investigate the failure (https://anglebug.com/1533)
std::cout << "Test disabled on Windows AMD OpenGL." << std::endl;
return;
}
glBindTexture(GL_TEXTURE_2D, mTextures[0]); glBindTexture(GL_TEXTURE_2D, mTextures[0]);
glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, mTextures[0], 0); glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, mTextures[0], 0);
...@@ -327,6 +334,13 @@ TEST_P(DrawBuffersTest, FirstHalfNULL) ...@@ -327,6 +334,13 @@ TEST_P(DrawBuffersTest, FirstHalfNULL)
return; return;
} }
if (IsWindows() && IsAMD() && IsDesktopOpenGL())
{
// TODO(ynovikov): Investigate the failure (https://anglebug.com/1533)
std::cout << "Test disabled on Windows AMD OpenGL." << std::endl;
return;
}
bool flags[8] = { false }; bool flags[8] = { false };
GLenum bufs[8] = { GL_NONE }; GLenum bufs[8] = { GL_NONE };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment