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

Unified Diff: chrome/browser/extensions/service_worker_apitest.cc

Issue 2797663002: Disable flaky test ServiceWorkerTest.WorkerRefCount on Linux (Closed)
Patch Set: Created 3 years, 8 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/service_worker_apitest.cc
diff --git a/chrome/browser/extensions/service_worker_apitest.cc b/chrome/browser/extensions/service_worker_apitest.cc
index c0222982ef5c4d20af22c65226e0f3591c1efb30..639e6249345f09c63bb311e844eeb2ec5021d98e 100644
--- a/chrome/browser/extensions/service_worker_apitest.cc
+++ b/chrome/browser/extensions/service_worker_apitest.cc
@@ -655,7 +655,14 @@ IN_PROC_BROWSER_TEST_F(ServiceWorkerTest, TabsCreate) {
// Tests that worker ref count increments while extension API function is
// active.
-IN_PROC_BROWSER_TEST_F(ServiceWorkerTest, WorkerRefCount) {
+
+// Flaky on Linux and ChromeOS, https://crbug.com/702126
+#if defined(OS_LINUX)
+#define MAYBE_WorkerRefCount DISABLED_WorkerRefCount
+#else
+#define MAYBE_WorkerRefCount WorkerRefCount
+#endif
+IN_PROC_BROWSER_TEST_F(ServiceWorkerTest, MAYBE_WorkerRefCount) {
// Extensions APIs from SW are only enabled on trunk.
ScopedCurrentChannel current_channel_override(version_info::Channel::UNKNOWN);
const Extension* extension = LoadExtensionWithFlags(
« 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