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

Unified Diff: chrome/browser/extensions/api/offscreen_tabs/offscreen_tabs_apitest.cc

Issue 10836277: Disable flaky OffscreenTabsApiTest.OffscreenTabMouseEvents for Win and Linux (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 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/browser/extensions/api/offscreen_tabs/offscreen_tabs_apitest.cc
diff --git a/chrome/browser/extensions/api/offscreen_tabs/offscreen_tabs_apitest.cc b/chrome/browser/extensions/api/offscreen_tabs/offscreen_tabs_apitest.cc
index ae61d164d5240b9b22611ac272d0fd2f7d942c5f..b99630a96e707227c33f4c04b21dfe949b31c039 100644
--- a/chrome/browser/extensions/api/offscreen_tabs/offscreen_tabs_apitest.cc
+++ b/chrome/browser/extensions/api/offscreen_tabs/offscreen_tabs_apitest.cc
@@ -22,7 +22,13 @@ IN_PROC_BROWSER_TEST_F(OffscreenTabsApiTest, DISABLED_OffscreenTabBasics) {
}
-IN_PROC_BROWSER_TEST_F(OffscreenTabsApiTest, OffscreenTabMouseEvents) {
+#if defined (OS_WIN) || defined (OS_LINUX)
+// http://crbug.com/142993 - this times out flakily on Win/Linux
+#define MAYBE_OffscreenTabMouseEvents DISABLED_OffscreenTabMouseEvents
+#else
+#define MAYBE_OffscreenTabMouseEvents OffscreenTabMouseEvents
+#endif
+IN_PROC_BROWSER_TEST_F(OffscreenTabsApiTest, MAYBE_OffscreenTabMouseEvents) {
ASSERT_TRUE(RunExtensionSubtest("offscreen_tabs",
"mouse_events.html")) << message_;
}
« 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