Commit 00ff1194 by Yuly Novikov Committed by Commit Bot

Disable DrawBuffersTest.Gaps on Windows AMD OpenGL

Fails on Win7 Release (AMD R7 240) bot BUG=angleproject:1535 Change-Id: I5e8d0552867bfe0d81f3e189536c50b36f530089 Reviewed-on: https://chromium-review.googlesource.com/389233Reviewed-by: 's avatarYuly Novikov <ynovikov@chromium.org> Commit-Queue: Yuly Novikov <ynovikov@chromium.org>
parent e8a78496
......@@ -256,6 +256,13 @@ TEST_P(DrawBuffersTest, Gaps)
return;
}
if (IsWindows() && IsAMD() && IsDesktopOpenGL())
{
// TODO(ynovikov): Investigate the failure (http://anglebug.com/1535)
std::cout << "Test disabled on Windows AMD OpenGL." << std::endl;
return;
}
glBindTexture(GL_TEXTURE_2D, mTextures[0]);
glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT1, GL_TEXTURE_2D, mTextures[0], 0);
......
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