Commit eb491155 authored by derat@chromium.org's avatar derat@chromium.org

Disable ServiceWorkerBlackBoxBrowserTest.Registration on Android.

This test is crashing frequently.

BUG=387045
TBR=michaeln@chromium.org

Review URL: https://codereview.chromium.org/341193003

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@278795 0039d316-1c4b-4281-b951-d872f2087c98
parent 728b7eff
......@@ -612,7 +612,13 @@ static int CountRenderProcessHosts() {
return result;
}
IN_PROC_BROWSER_TEST_F(ServiceWorkerBlackBoxBrowserTest, Registration) {
// Crashes on Android: http://crbug.com/387045
#if defined(OS_ANDROID)
#define MAYBE_Registration DISABLED_Registration
#else
#define MAYBE_Registration Registration
#endif
IN_PROC_BROWSER_TEST_F(ServiceWorkerBlackBoxBrowserTest, MAYBE_Registration) {
// Close the only window to be sure we're not re-using its RenderProcessHost.
shell()->Close();
EXPECT_EQ(0, CountRenderProcessHosts());
......
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