summaryrefslogtreecommitdiffstats
path: root/gpu
diff options
context:
space:
mode:
Diffstat (limited to 'gpu')
-rw-r--r--gpu/command_buffer/tests/gl_depth_texture_unittest.cc10
1 files changed, 9 insertions, 1 deletions
diff --git a/gpu/command_buffer/tests/gl_depth_texture_unittest.cc b/gpu/command_buffer/tests/gl_depth_texture_unittest.cc
index d13104a..aa11034 100644
--- a/gpu/command_buffer/tests/gl_depth_texture_unittest.cc
+++ b/gpu/command_buffer/tests/gl_depth_texture_unittest.cc
@@ -62,7 +62,15 @@ struct FormatType {
} // anonymous namespace
-TEST_F(DepthTextureTest, RenderTo) {
+// crbug.com/135228
+// Fails on Win Intel, Linux Intel; flaky on Linux ATI
+#if ((defined(OS_WIN) || defined(OS_LINUX)) && defined(NDEBUG))
+#define MAYBE_RenderTo FAILS_RenderTo
+#else
+#define MAYBE_RenderTo RenderTo
+#endif
+
+TEST_F(DepthTextureTest, MAYBE_RenderTo) {
if (!GLTestHelper::HasExtension("GL_CHROMIUM_depth_texture")) {
return;
}