| Index: chrome/test/ui/npapi_uitest.cc
|
| diff --git a/chrome/test/ui/npapi_uitest.cc b/chrome/test/ui/npapi_uitest.cc
|
| index 577ac59517cb6dd9a97791ade70cd156a44dcf48..51d2743a5ac04160f5caeea0358c65b1e6c285c9 100644
|
| --- a/chrome/test/ui/npapi_uitest.cc
|
| +++ b/chrome/test/ui/npapi_uitest.cc
|
| @@ -160,7 +160,14 @@ TEST_F(NPAPIVisiblePluginTester, SelfDeletePluginInNewStream) {
|
| TestTimeouts::action_max_timeout_ms());
|
| }
|
|
|
| -TEST_F(NPAPIVisiblePluginTester, DeletePluginInDeallocate) {
|
| +// http://crbug.com/95558
|
| +// This test fails frequently on Mac, so it is disabled for now.
|
| +#if defined(OS_MACOSX)
|
| +#define MAYBE_DeletePluginInDeallocate DISABLED_DeletePluginInDeallocate
|
| +#else
|
| +#define MAYBE_DeletePluginInDeallocate DeletePluginInDeallocate
|
| +#endif
|
| +TEST_F(NPAPIVisiblePluginTester, MAYBE_DeletePluginInDeallocate) {
|
| show_window_ = true;
|
| const FilePath test_case(
|
| FILE_PATH_LITERAL("plugin_delete_in_deallocate.html"));
|
|
|