Commit 0962fc36 by Jamie Madill

Suppress two failing end2end_tests on Intel.

The UniformTest suppression we can work around with a patch to handle GetUniform queries entirely in ANGLE. The suppression for BlendMinMax is a long-standing failure for an unknown reason. BUG=angleproject:809 Change-Id: Ib89af1579a74dc5065f169b31307678429724a7c Reviewed-on: https://chromium-review.googlesource.com/298450Tested-by: 's avatarJamie Madill <jmadill@chromium.org> Reviewed-by: 's avatarCorentin Wallez <cwallez@chromium.org> Reviewed-by: 's avatarGeoff Lang <geofflang@chromium.org>
parent e6432c85
......@@ -176,6 +176,13 @@ TEST_P(BlendMinMaxTest, RGBA16F)
return;
}
// TODO(jmadill): figure out why this fails
if (isIntel() && GetParam() == ES2_D3D11())
{
std::cout << "Test skipped on Intel due to failures." << std::endl;
return;
}
runTest(GL_RGBA16F);
}
......
......@@ -239,9 +239,9 @@ TEST_P(UniformTest, FloatUniformStateQuery)
TEST_P(UniformTest, IntUniformStateQuery)
{
// TODO(jmadill): remove this suppression once we support ANGLE-only state queries.
if (isAMD() && (GetParam() == ES2_OPENGL() || GetParam() == ES3_OPENGL()))
if ((isAMD() || isIntel()) && (GetParam() == ES2_OPENGL() || GetParam() == ES3_OPENGL()))
{
std::cout << "Skipping test due to a driver bug on AMD." << std::endl;
std::cout << "Skipping test due to a driver bug." << std::endl;
return;
}
......
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