Commit 17cbf497 authored by Andrew Grieve's avatar Andrew Grieve Committed by Commit Bot

Disable LocalStorageContextMojoTestWithService.InvalidVersionOnDisk on Android

Test is very flakey. On many bots, it fails at least once per run.

Bug: 756550
Change-Id: I8eac5aa374999a20382e30c689761bedb6f23c65
Reviewed-on: https://chromium-review.googlesource.com/1106760
Commit-Queue: agrieve <agrieve@chromium.org>
Commit-Queue: Daniel Murphy <dmurph@chromium.org>
Reviewed-by: default avatarDaniel Murphy <dmurph@chromium.org>
Cr-Commit-Position: refs/heads/master@{#568596}
parent cc7f4da7
......@@ -891,7 +891,13 @@ TEST_F(LocalStorageContextMojoTestWithService, OnDisk) {
context->ShutdownAndDelete();
}
TEST_F(LocalStorageContextMojoTestWithService, InvalidVersionOnDisk) {
// Flaky on Android. https://crbug.com/756550
#if defined(OS_ANDROID)
#define MAYBE_InvalidVersionOnDisk DISABLED_InvalidVersionOnDisk
#else
#define MAYBE_InvalidVersionOnDisk InvalidVersionOnDisk
#endif
TEST_F(LocalStorageContextMojoTestWithService, MAYBE_InvalidVersionOnDisk) {
base::FilePath test_path(FILE_PATH_LITERAL("test_path"));
// Create context and add some data to it.
......
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