summaryrefslogtreecommitdiffstats
path: root/gpu/command_buffer/tests/gl_pointcoord_unittest.cc
diff options
context:
space:
mode:
Diffstat (limited to 'gpu/command_buffer/tests/gl_pointcoord_unittest.cc')
-rw-r--r--gpu/command_buffer/tests/gl_pointcoord_unittest.cc9
1 files changed, 8 insertions, 1 deletions
diff --git a/gpu/command_buffer/tests/gl_pointcoord_unittest.cc b/gpu/command_buffer/tests/gl_pointcoord_unittest.cc
index 1c799e6..5d6f192 100644
--- a/gpu/command_buffer/tests/gl_pointcoord_unittest.cc
+++ b/gpu/command_buffer/tests/gl_pointcoord_unittest.cc
@@ -65,7 +65,14 @@ GLfloat s2p(GLfloat s) {
} // anonymous namespace
-TEST_F(PointCoordTest, RenderTo) {
+// crbug.com/162976
+// Flaky on Linux ATI bot.
+#if (defined(OS_LINUX) && defined(NDEBUG))
+#define MAYBE_RenderTo FAILS_RenderTo
+#else
+#define MAYBE_RenderTo RenderTo
+#endif
+TEST_F(PointCoordTest, MAYBE_RenderTo) {
static const char* v_shader_str = SHADER(
attribute vec4 a_position;
uniform float u_pointsize;