| Index: gpu/command_buffer/tests/gl_apply_screen_space_antialiasing_CHROMIUM_unittest.cc
|
| diff --git a/gpu/command_buffer/tests/gl_apply_screen_space_antialiasing_CHROMIUM_unittest.cc b/gpu/command_buffer/tests/gl_apply_screen_space_antialiasing_CHROMIUM_unittest.cc
|
| index b7c32d35612bdc7764b8ac156a9749c6a60e9f57..9bd77f044c8a8a476b36507c92f687c29b22a03e 100644
|
| --- a/gpu/command_buffer/tests/gl_apply_screen_space_antialiasing_CHROMIUM_unittest.cc
|
| +++ b/gpu/command_buffer/tests/gl_apply_screen_space_antialiasing_CHROMIUM_unittest.cc
|
| @@ -94,8 +94,15 @@ class GLApplyScreenSpaceAntialiasingCHROMIUMTest : public testing::Test {
|
| bool available_ = false;
|
| };
|
|
|
| +// TODO(dongseong.hwang): This test fails on the Nexus 9 GPU fyi bot.
|
| +// crbug.com/659638
|
| +#if defined(OS_ANDROID)
|
| +#define MAYBE_Basic DISABLED_Basic
|
| +#else
|
| +#define MAYBE_Basic Basic
|
| +#endif
|
| // Test to ensure that the basic functionality of the extension works.
|
| -TEST_F(GLApplyScreenSpaceAntialiasingCHROMIUMTest, Basic) {
|
| +TEST_F(GLApplyScreenSpaceAntialiasingCHROMIUMTest, MAYBE_Basic) {
|
| if (!available_)
|
| return;
|
|
|
|
|