summaryrefslogtreecommitdiffstats
path: root/gpu
diff options
context:
space:
mode:
Diffstat (limited to 'gpu')
-rw-r--r--gpu/command_buffer/tests/gl_depth_texture_unittest.cc4
-rw-r--r--gpu/command_buffer/tests/gl_pointcoord_unittest.cc9
2 files changed, 10 insertions, 3 deletions
diff --git a/gpu/command_buffer/tests/gl_depth_texture_unittest.cc b/gpu/command_buffer/tests/gl_depth_texture_unittest.cc
index aa11034..324a2eb 100644
--- a/gpu/command_buffer/tests/gl_depth_texture_unittest.cc
+++ b/gpu/command_buffer/tests/gl_depth_texture_unittest.cc
@@ -62,8 +62,8 @@ struct FormatType {
} // anonymous namespace
-// crbug.com/135228
-// Fails on Win Intel, Linux Intel; flaky on Linux ATI
+// crbug.com/135229
+// Fails on Win Intel, Linux Intel.
#if ((defined(OS_WIN) || defined(OS_LINUX)) && defined(NDEBUG))
#define MAYBE_RenderTo FAILS_RenderTo
#else
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;