Commit cfb85358 by Jamie Madill Committed by Commit Bot

Suppress flaky test on Intel D3D Windows.

PointSpritesTest.PointWithoutAttributesCompliance: https://build.chromium.org/p/chromium.gpu.fyi/builders/Win7%20Debug%20%28New%20Intel%29/builds/1741 Showing as failed now that flaky tests are not retried. BUG=angleproject:1346 Change-Id: Ic0fce361f37394da8771fa82288b0a9206d3a347 Reviewed-on: https://chromium-review.googlesource.com/415448Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org> Commit-Queue: Jamie Madill <jmadill@chromium.org>
parent 0742c8c9
...@@ -170,6 +170,14 @@ TEST_P(PointSpritesTest, PointWithoutAttributesCompliance) ...@@ -170,6 +170,14 @@ TEST_P(PointSpritesTest, PointWithoutAttributesCompliance)
return; return;
} }
// TODO(jmadill): Figure out why this fails on Intel.
// http://anglebug.com/1346
if (IsIntel() && IsWindows() && (IsD3D11() || IsD3D9()))
{
std::cout << "Test skipped on Intel Windows D3D." << std::endl;
return;
}
// clang-format off // clang-format off
const std::string fs = SHADER_SOURCE const std::string fs = SHADER_SOURCE
( (
......
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