Commit 093418e5 authored by suzyh's avatar suzyh Committed by Commit bot

Disable flaky CursorTestIncognito on Android

IndexedDBBrowserTest.CursorTestIncognito is flaky on
linux_android_rel_ng.

TBR=jsbell@chromium.org
BUG=716728

Review-Url: https://codereview.chromium.org/2853753002
Cr-Commit-Position: refs/heads/master@{#468282}
parent 279fda40
......@@ -200,7 +200,12 @@ IN_PROC_BROWSER_TEST_F(IndexedDBBrowserTest, CursorTest) {
SimpleTest(GetTestUrl("indexeddb", "cursor_test.html"));
}
IN_PROC_BROWSER_TEST_F(IndexedDBBrowserTest, CursorTestIncognito) {
#if defined(OS_ANDROID)
#define MAYBE_CursorTestIncognito DISABLED_CursorTestIncognito
#else
#define MAYBE_CursorTestIncognito CursorTestIncogntio
#endif
IN_PROC_BROWSER_TEST_F(IndexedDBBrowserTest, MAYBE_CursorTestIncognito) {
SimpleTest(GetTestUrl("indexeddb", "cursor_test.html"),
true /* incognito */);
}
......
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