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

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

Issue 1499563002: Disable flaky gl tests on Android. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update comment. Created 5 years 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 | « gpu/command_buffer/tests/es3_misc_functions_unittest.cc ('k') | 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_ext_srgb_unittest.cc
diff --git a/gpu/command_buffer/tests/gl_ext_srgb_unittest.cc b/gpu/command_buffer/tests/gl_ext_srgb_unittest.cc
index 53b3c24fc3d4d2a260d0ddb4f0745f3def90c417..5e709b83ced279fdf2a6214a9d4e585f21b422df 100644
--- a/gpu/command_buffer/tests/gl_ext_srgb_unittest.cc
+++ b/gpu/command_buffer/tests/gl_ext_srgb_unittest.cc
@@ -25,7 +25,14 @@ class GLEXTSRGBTest : public testing::Test {
// Test to ensure that GL_SRGB_ALPHA as glTex(Sub)Image2D parameter works. This
// is tricky because GL_SRGB_ALPHA is valid in OpenGL ES 2.0 but not valid in
// OpenGL.
-TEST_F(GLEXTSRGBTest, TexImageSRGBALPHAFormat) {
+#if defined(OS_ANDROID)
+// Test is failing for Lollipop 64 bit Tester.
+// See crbug/550292.
+#define MAYBE_TexImageSRGBALPHAFormat DISABLED_TexImageSRGBALPHAFormat
+#else
+#define MAYBE_TexImageSRGBALPHAFormat TexImageSRGBALPHAFormat
+#endif
+TEST_F(GLEXTSRGBTest, MAYBE_TexImageSRGBALPHAFormat) {
if (!IsApplicable())
return;
static const int kWidth = 10;
« no previous file with comments | « gpu/command_buffer/tests/es3_misc_functions_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698