Commit 27511833 authored by Ken Rockot's avatar Ken Rockot Committed by Commit Bot

Disable ServiceManagerContextTest.TerminateOnServiceQuit for ASAN

This flakily times-out on ASAN bots.

Bug: 803814
Change-Id: I2639e4b36c6dff9021744bc753805b085e161a4a

TBR=jamescook

Change-Id: I2639e4b36c6dff9021744bc753805b085e161a4a
Reviewed-on: https://chromium-review.googlesource.com/876727Reviewed-by: default avatarKen Rockot <rockot@chromium.org>
Commit-Queue: Ken Rockot <rockot@chromium.org>
Cr-Commit-Position: refs/heads/master@{#530613}
parent c76e9034
...@@ -112,8 +112,13 @@ IN_PROC_BROWSER_TEST_F(ServiceManagerContextBrowserTest, ...@@ -112,8 +112,13 @@ IN_PROC_BROWSER_TEST_F(ServiceManagerContextBrowserTest,
loop.Run(); loop.Run();
} }
// Verifies that if an important service quits then the browser exits. // Flaky timeout on Linux and Chrome OS ASAN: http://crbug.com/803814
TEST(ServiceManagerContextTest, TerminateOnServiceQuit) { #if defined(OS_CHROMEOS) && defined(ADDRESS_SANITIZER)
#define MAYBE_TerminateOnServiceQuit DISABLED_TerminateOnServiceQuit
#else
#define MAYBE_TerminateOnServiceQuit TerminateOnServiceQuit
#endif
TEST(ServiceManagerContextTest, MAYBE_TerminateOnServiceQuit) {
// Run the above test and collect the test output. // Run the above test and collect the test output.
base::CommandLine new_test = base::CommandLine new_test =
base::CommandLine(base::CommandLine::ForCurrentProcess()->GetProgram()); base::CommandLine(base::CommandLine::ForCurrentProcess()->GetProgram());
......
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