Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(248)

Unified Diff: gpu/command_buffer/tests/gl_depth_texture_unittest.cc

Issue 11413194: Skip DepthTextureTest.RenderTo on a few bots to keep them green (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/command_buffer/tests/gl_depth_texture_unittest.cc
===================================================================
--- gpu/command_buffer/tests/gl_depth_texture_unittest.cc (revision 168004)
+++ gpu/command_buffer/tests/gl_depth_texture_unittest.cc (working copy)
@@ -62,7 +62,15 @@
} // 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;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698