Commit 76bec014 authored by Marc Treib's avatar Marc Treib Committed by Commit Bot

Disable SingleClientSecondaryAccountSyncTest.ReusesSameCacheGuid on ASan/TSan

It's very flaky.

Bug: 1004312
Change-Id: Ieb13eb3860e0003451beeeed57f882845d9c2769
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1844997
Commit-Queue: Marc Treib <treib@chromium.org>
Commit-Queue: Jan Krcal <jkrcal@chromium.org>
Auto-Submit: Marc Treib <treib@chromium.org>
Reviewed-by: default avatarJan Krcal <jkrcal@chromium.org>
Cr-Commit-Position: refs/heads/master@{#703276}
parent 2d39a61e
...@@ -193,8 +193,14 @@ IN_PROC_BROWSER_TEST_F(SingleClientSecondaryAccountSyncTest, ...@@ -193,8 +193,14 @@ IN_PROC_BROWSER_TEST_F(SingleClientSecondaryAccountSyncTest,
// The unconsented primary account (aka secondary account) isn't supported on // The unconsented primary account (aka secondary account) isn't supported on
// ChromeOS, see IdentityManager::ComputeUnconsentedPrimaryAccountInfo(). // ChromeOS, see IdentityManager::ComputeUnconsentedPrimaryAccountInfo().
#if !defined(OS_CHROMEOS) #if !defined(OS_CHROMEOS)
// Flaky on ASan/TSan, crbug.com/1004312.
#if defined(ADDRESS_SANITIZER) || defined(THREAD_SANITIZER)
#define MAYBE_ReusesSameCacheGuid DISABLED_ReusesSameCacheGuid
#else
#define MAYBE_ReusesSameCacheGuid ReusesSameCacheGuid
#endif
IN_PROC_BROWSER_TEST_F(SingleClientSecondaryAccountSyncTest, IN_PROC_BROWSER_TEST_F(SingleClientSecondaryAccountSyncTest,
ReusesSameCacheGuid) { MAYBE_ReusesSameCacheGuid) {
ASSERT_TRUE(SetupClients()) << "SetupClients() failed."; ASSERT_TRUE(SetupClients()) << "SetupClients() failed.";
ASSERT_TRUE(GetClient(0)->AwaitSyncTransportActive()); ASSERT_TRUE(GetClient(0)->AwaitSyncTransportActive());
......
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