Skip to content

Commit

Permalink
Disable SyncExponentialBackoffTest.OfflineToOnline on CrOS
Browse files Browse the repository at this point in the history
It's very flaky.

Bug: 1170609
Change-Id: I1220d79f3b74db9b66329c0b602ac062b1cc0912
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2667350
Auto-Submit: Marc Treib <treib@chromium.org>
Commit-Queue: Mikel Astiz <mastiz@chromium.org>
Reviewed-by: Mikel Astiz <mastiz@chromium.org>
Cr-Commit-Position: refs/heads/master@{#849593}
  • Loading branch information
Marc Treib authored and Chromium LUCI CQ committed Feb 2, 2021
1 parent 7331fa3 commit 4d603a0
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,13 @@ class ExponentialBackoffChecker : public SingleClientStatusChangeChecker {
DISALLOW_COPY_AND_ASSIGN(ExponentialBackoffChecker);
};

IN_PROC_BROWSER_TEST_F(SyncExponentialBackoffTest, OfflineToOnline) {
// Flaky on ChromeOS, crbug.com/1170609
#if BUILDFLAG(IS_CHROMEOS_ASH)
#define MAYBE_OfflineToOnline DISABLED_OfflineToOnline
#else
#define MAYBE_OfflineToOnline OfflineToOnline
#endif
IN_PROC_BROWSER_TEST_F(SyncExponentialBackoffTest, MAYBE_OfflineToOnline) {
const std::string kFolderTitle1 = "folder1";
const std::string kFolderTitle2 = "folder2";

Expand Down

0 comments on commit 4d603a0

Please sign in to comment.