| Index: chrome/test/ppapi/ppapi_browsertest.cc
|
| diff --git a/chrome/test/ppapi/ppapi_browsertest.cc b/chrome/test/ppapi/ppapi_browsertest.cc
|
| index ec257f65038f134b590d2d884304979478146b68..a2e391256302e6ae0c8902ae66746070cd1f9856 100644
|
| --- a/chrome/test/ppapi/ppapi_browsertest.cc
|
| +++ b/chrome/test/ppapi/ppapi_browsertest.cc
|
| @@ -1304,7 +1304,13 @@ IN_PROC_BROWSER_TEST_F(OutOfProcessPPAPITest, View) {
|
| IN_PROC_BROWSER_TEST_F(PPAPINaClNewlibTest, View) {
|
| RUN_VIEW_SUBTESTS;
|
| }
|
| -IN_PROC_BROWSER_TEST_F(PPAPINaClGLibcTest, MAYBE_GLIBC(View)) {
|
| +// Disabled due to flakiness under MSAN. See http://crbug.com/450908.
|
| +#if defined(MEMORY_SANITIZER)
|
| +#define MAYBE_View DISABLED_View
|
| +#else
|
| +#define MAYBE_View View
|
| +#endif
|
| +IN_PROC_BROWSER_TEST_F(PPAPINaClGLibcTest, MAYBE_GLIBC(MAYBE_View)) {
|
| RUN_VIEW_SUBTESTS;
|
| }
|
| IN_PROC_BROWSER_TEST_F(PPAPINaClPNaClTest, View) {
|
|
|