| Index: gpu/command_buffer/tests/es3_misc_functions_unittest.cc
|
| diff --git a/gpu/command_buffer/tests/es3_misc_functions_unittest.cc b/gpu/command_buffer/tests/es3_misc_functions_unittest.cc
|
| index 7f9769ce98498a66d6d9585dd638ac10119e094f..6b3ffa96accc76ca7ffb7358a5a00da3c53d9546 100644
|
| --- a/gpu/command_buffer/tests/es3_misc_functions_unittest.cc
|
| +++ b/gpu/command_buffer/tests/es3_misc_functions_unittest.cc
|
| @@ -32,7 +32,14 @@ class OpenGLES3FunctionTest : public testing::Test {
|
| GLManager gl_;
|
| };
|
|
|
| -TEST_F(OpenGLES3FunctionTest, GetFragDataLocationInvalid) {
|
| +#if defined(OS_ANDROID)
|
| +// Test is failing for Lollipop 64 bit Tester.
|
| +// See crbug/550292.
|
| +#define MAYBE_GetFragDataLocationInvalid DISABLED_GetFragDataLocationInvalid
|
| +#else
|
| +#define MAYBE_GetFragDataLocationInvalid GetFragDataLocationInvalid
|
| +#endif
|
| +TEST_F(OpenGLES3FunctionTest, MAYBE_GetFragDataLocationInvalid) {
|
| if (!IsApplicable()) {
|
| return;
|
| }
|
|
|