Commit 1a256721 by Zhenyao Mo Committed by Commit Bot

Skip two unittests on Linux/Intel.

BUG=680631 TEST=angle_end2end_tests on Linux/Intel Change-Id: I0823b5accc1c1962d7b498bf74d58edcc6971133 Reviewed-on: https://chromium-review.googlesource.com/427285Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org> Commit-Queue: Zhenyao Mo <zmo@chromium.org> Commit-Queue: Jamie Madill <jmadill@chromium.org>
parent 417df92f
......@@ -1707,6 +1707,12 @@ TEST_P(GLSLTest, LoopIndexingValidation)
// can actually be used.
TEST_P(GLSLTest, VerifyMaxVertexUniformVectors)
{
if (IsLinux() && IsIntel())
{
std::cout << "Test timed out on Linux Intel. See crbug.com/680631." << std::endl;
return;
}
int maxUniforms = 10000;
glGetIntegerv(GL_MAX_VERTEX_UNIFORM_VECTORS, &maxUniforms);
EXPECT_GL_NO_ERROR();
......@@ -1753,6 +1759,12 @@ TEST_P(GLSLTest, VerifyMaxVertexUniformVectorsExceeded)
// can actually be used.
TEST_P(GLSLTest, VerifyMaxFragmentUniformVectors)
{
if (IsLinux() && IsIntel())
{
std::cout << "Test timed out on Linux Intel. See crbug.com/680631." << std::endl;
return;
}
int maxUniforms = 10000;
glGetIntegerv(GL_MAX_FRAGMENT_UNIFORM_VECTORS, &maxUniforms);
EXPECT_GL_NO_ERROR();
......
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