Commit d9c40a20 authored by fdegans's avatar fdegans Committed by Commit bot

Disable IndexedDBBrowserTest.ConnectionsClosedOnTabClose for Android ASAN.

This test is taking too long to run on the bot and preventing other
tests to be run.

BUG=427529

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

Cr-Commit-Position: refs/heads/master@{#311511}
parent ffd7134b
......@@ -697,8 +697,16 @@ IN_PROC_BROWSER_TEST_F(IndexedDBBrowserTest, VersionChangeCrashResilience) {
"pass - part3 - rolled back");
}
// crbug.com/427529
// Disable this test for ASAN on Android because it takes too long to run.
#if defined(ANDROID) && defined(ADDRESS_SANITIZER)
#define MAYBE_ConnectionsClosedOnTabClose DISABLED_ConnectionsClosedOnTabClose
#else
#define MAYBE_ConnectionsClosedOnTabClose ConnectionsClosedOnTabClose
#endif
// Verify that open DB connections are closed when a tab is destroyed.
IN_PROC_BROWSER_TEST_F(IndexedDBBrowserTest, ConnectionsClosedOnTabClose) {
IN_PROC_BROWSER_TEST_F(
IndexedDBBrowserTest, MAYBE_ConnectionsClosedOnTabClose) {
NavigateAndWaitForTitle(shell(), "version_change_blocked.html", "#tab1",
"setVersion(2) complete");
......
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