Commit 5103f4c0 by Geoff Lang

Supress AMD OpenGL failures in angle_end2end_tests.

BUG=angleproject:1291 Change-Id: I4fc8cc152bb5ef18fff78bf312a14691e9de0243 Reviewed-on: https://chromium-review.googlesource.com/324030 Tryjob-Request: Geoff Lang <geofflang@chromium.org> Reviewed-by: 's avatarGeoff Lang <geofflang@chromium.org> Tested-by: 's avatarGeoff Lang <geofflang@chromium.org>
parent 69accbd1
......@@ -470,15 +470,15 @@ TEST_P(GLSLTest, ScopedStructsOrderBug)
std::cout << "Test disabled on Apple OpenGL." << std::endl;
return;
}
#elif defined(_WIN32)
// TODO(geofflang): Find out why this doesn't compile on Windows AMD OpenGL drivers
#endif
// TODO(geofflang): Find out why this doesn't compile on AMD OpenGL drivers
// (http://anglebug.com/1291)
if (isAMD() && getPlatformRenderer() == EGL_PLATFORM_ANGLE_TYPE_OPENGL_ANGLE)
{
std::cout << "Test disabled on Windows AMD OpenGL." << std::endl;
std::cout << "Test disabled on AMD OpenGL." << std::endl;
return;
}
#endif
const std::string fragmentShaderSource = SHADER_SOURCE
(
......
......@@ -75,6 +75,13 @@ class StateChangeTestES3 : public StateChangeTest
// Ensure that CopyTexImage2D syncs framebuffer changes.
TEST_P(StateChangeTest, CopyTexImage2DSync)
{
if (isAMD() && getPlatformRenderer() == EGL_PLATFORM_ANGLE_TYPE_OPENGL_ANGLE)
{
// TODO(geofflang): Fix on Linux AMD drivers (http://anglebug.com/1291)
std::cout << "Test disabled on AMD OpenGL." << std::endl;
return;
}
glBindFramebuffer(GL_FRAMEBUFFER, mFramebuffer);
// Init first texture to red
......
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