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

Unified Diff: chrome/test/ui/npapi_uitest.cc

Issue 7840011: Disable the DeletePluginInDeallocate test on Mac. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 3 months 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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"));
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698