Commit b71a317e authored by Greg Thompson's avatar Greg Thompson Committed by Commit Bot

Disable ServiceWorkerBasedBackgroundTest.Basic due to flakes.

BUG=855800
TBR=lazyboy@chromium.org
NOTRY=true

Change-Id: I5eb0663724303fd7f7f2eb4b0feac36c82cc4421
Reviewed-on: https://chromium-review.googlesource.com/1116796Reviewed-by: default avatarGreg Thompson <grt@chromium.org>
Commit-Queue: Greg Thompson <grt@chromium.org>
Cr-Commit-Position: refs/heads/master@{#570739}
parent 1f61a502
...@@ -287,11 +287,17 @@ IN_PROC_BROWSER_TEST_P(ServiceWorkerBasedBackgroundTest, PRE_Basic) { ...@@ -287,11 +287,17 @@ IN_PROC_BROWSER_TEST_P(ServiceWorkerBasedBackgroundTest, PRE_Basic) {
EXPECT_FALSE(process_manager()->GetBackgroundHostForExtension(extension_id)); EXPECT_FALSE(process_manager()->GetBackgroundHostForExtension(extension_id));
} }
#if defined(OS_LINUX)
// Disabled on Linux due to flakes; see https://crbug.com/855800.
#define MAYBE_Basic DISABLED_Basic
#else
#define MAYBE_Basic Basic
#endif
// After browser restarts, this test step ensures that opening a tab fires // After browser restarts, this test step ensures that opening a tab fires
// tabs.onCreated event listener to the extension without explicitly loading the // tabs.onCreated event listener to the extension without explicitly loading the
// extension. This is because the extension registered a listener before browser // extension. This is because the extension registered a listener before browser
// restarted in PRE_Basic. // restarted in PRE_Basic.
IN_PROC_BROWSER_TEST_P(ServiceWorkerBasedBackgroundTest, Basic) { IN_PROC_BROWSER_TEST_P(ServiceWorkerBasedBackgroundTest, MAYBE_Basic) {
ExtensionTestMessageListener newtab_listener("CREATED", false); ExtensionTestMessageListener newtab_listener("CREATED", false);
newtab_listener.set_failure_message("CREATE_FAILED"); newtab_listener.set_failure_message("CREATE_FAILED");
const GURL url = embedded_test_server()->GetURL("/extensions/test_file.html"); const GURL url = embedded_test_server()->GetURL("/extensions/test_file.html");
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment