Commit 834dd263 by Yuly Novikov Committed by Commit Bot

Skip WebGLReadOutsideFramebufferTest.CopyTexSubImage2D on Win Intel

Fails on Win10 Intel HD 530 and 630 bots. BUG=angleproject:1815 TBR=fjhenigman@chromium.org Change-Id: I27227cfa882f448e8b2de76e16dfe0dfe91703d2 Reviewed-on: https://chromium-review.googlesource.com/556759 Commit-Queue: Yuly Novikov <ynovikov@chromium.org> Reviewed-by: 's avatarYuly Novikov <ynovikov@chromium.org>
parent 360daeef
...@@ -263,6 +263,13 @@ TEST_P(WebGLReadOutsideFramebufferTest, ReadPixels) ...@@ -263,6 +263,13 @@ TEST_P(WebGLReadOutsideFramebufferTest, ReadPixels)
// the corresponding source pixel is outside the framebuffer. // the corresponding source pixel is outside the framebuffer.
TEST_P(WebGLReadOutsideFramebufferTest, CopyTexSubImage2D) TEST_P(WebGLReadOutsideFramebufferTest, CopyTexSubImage2D)
{ {
// TODO(fjhenigman): Figure out why this fails on Win10 Intel OpenGL
if (IsWindows() && IsIntel() && IsDesktopOpenGL())
{
std::cout << "Test skipped on Windows OpenGL on Intel." << std::endl;
return;
}
Main(&WebGLReadOutsideFramebufferTest::TestCopyTexSubImage2D, false); Main(&WebGLReadOutsideFramebufferTest::TestCopyTexSubImage2D, 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