Commit 3f2bbafc authored by Chris Sharp's avatar Chris Sharp Committed by Commit Bot

Disable DeveloperPrivateApiTest.InspectInactiveServiceWorkerBackground

on Linux

TBR=ghazale@chromium.org
BUG=1134506

Change-Id: Id490ab99c96ea5eadf7dc4dfc564a23f7172e186
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2450953Reviewed-by: default avatarChris Sharp <csharp@chromium.org>
Commit-Queue: Chris Sharp <csharp@chromium.org>
Cr-Commit-Position: refs/heads/master@{#813939}
parent 11d61fc1
...@@ -4,6 +4,7 @@ ...@@ -4,6 +4,7 @@
#include "base/path_service.h" #include "base/path_service.h"
#include "base/strings/stringprintf.h" #include "base/strings/stringprintf.h"
#include "build/build_config.h"
#include "chrome/browser/devtools/devtools_window.h" #include "chrome/browser/devtools/devtools_window.h"
#include "chrome/browser/devtools/devtools_window_testing.h" #include "chrome/browser/devtools/devtools_window_testing.h"
#include "chrome/browser/extensions/api/developer_private/developer_private_api.h" #include "chrome/browser/extensions/api/developer_private/developer_private_api.h"
...@@ -137,8 +138,17 @@ IN_PROC_BROWSER_TEST_F(DeveloperPrivateApiTest, InspectEmbeddedOptionsPage) { ...@@ -137,8 +138,17 @@ IN_PROC_BROWSER_TEST_F(DeveloperPrivateApiTest, InspectEmbeddedOptionsPage) {
EXPECT_TRUE(DevToolsWindow::GetInstanceForInspectedWebContents(wc)); EXPECT_TRUE(DevToolsWindow::GetInstanceForInspectedWebContents(wc));
} }
// Crashes on Linux only. http://crbug.com/1134506
#if defined(OS_LINUX)
#define MAYBE_InspectInactiveServiceWorkerBackground \
DISABLED_InspectInactiveServiceWorkerBackground
#else
#define MAYBE_InspectInactiveServiceWorkerBackground \
InspectInactiveServiceWorkerBackground
#endif
IN_PROC_BROWSER_TEST_F(DeveloperPrivateApiTest, IN_PROC_BROWSER_TEST_F(DeveloperPrivateApiTest,
InspectInactiveServiceWorkerBackground) { MAYBE_InspectInactiveServiceWorkerBackground) {
ResultCatcher result_catcher; ResultCatcher result_catcher;
// Load an extension that is service worker based. // Load an extension that is service worker based.
const Extension* extension = const Extension* extension =
......
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