Commit b22615de by Jamie Madill Committed by Commit Bot

Suppress Intel program binary test on Win/OpenGL.

We might need to disable binaries on OpenGL Windows Intel at some point, or make a workaround for this particular bug. BUG=angleproject:1637 Change-Id: If9f73725a01f29f1148cff68d15b228e5841a2f8 Reviewed-on: https://chromium-review.googlesource.com/423234Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org> Commit-Queue: Jamie Madill <jmadill@chromium.org>
parent d5fe352a
...@@ -322,6 +322,14 @@ TEST_P(ProgramBinaryES3Test, UniformBlockBindingWithDraw) ...@@ -322,6 +322,14 @@ TEST_P(ProgramBinaryES3Test, UniformBlockBindingWithDraw)
// http://anglebug.com/1637 // http://anglebug.com/1637
TEST_P(ProgramBinaryES3Test, UniformBlockBindingNoDraw) TEST_P(ProgramBinaryES3Test, UniformBlockBindingNoDraw)
{ {
// TODO(jmadill): Investigate Intel failure.
// http://anglebug.com/1637
if (IsWindows() && IsOpenGL() && IsIntel())
{
std::cout << "Test skipped on Windows Intel OpenGL." << std::endl;
return;
}
testBinaryAndUBOBlockIndexes(false); testBinaryAndUBOBlockIndexes(false);
} }
......
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