Commit 02184e41 authored by Xida Chen's avatar Xida Chen Committed by Commit Bot

Disable AddOneDeleteOtherAddAgain on TSAN

TBR=maxmorin@chromium.org
NOTRY=true

Bug: 919090
Change-Id: Ie7e13df26de11ef7183cba9f6f08778e0ab97898
Reviewed-on: https://chromium-review.googlesource.com/c/1396218Reviewed-by: default avatarXida Chen <xidachen@chromium.org>
Commit-Queue: Xida Chen <xidachen@chromium.org>
Cr-Commit-Position: refs/heads/master@{#619945}
parent 6b7bb2fc
...@@ -492,7 +492,14 @@ IN_PROC_BROWSER_TEST_F(TwoClientTypedUrlsSyncTest, AddOneDeleteOther) { ...@@ -492,7 +492,14 @@ IN_PROC_BROWSER_TEST_F(TwoClientTypedUrlsSyncTest, AddOneDeleteOther) {
ASSERT_TRUE(ProfilesHaveSameTypedURLsChecker().Wait()); ASSERT_TRUE(ProfilesHaveSameTypedURLsChecker().Wait());
} }
IN_PROC_BROWSER_TEST_F(TwoClientTypedUrlsSyncTest, AddOneDeleteOtherAddAgain) { // crbug.com/919090
#if defined(THREAD_SANITIZER)
#define MAYBE_AddOneDeleteOtherAddAgain DISABLED_AddOneDeleteOtherAddAgain
#else
#define MAYBE_AddOneDeleteOtherAddAgain AddOneDeleteOtherAddAgain
#endif
IN_PROC_BROWSER_TEST_F(TwoClientTypedUrlsSyncTest,
MAYBE_AddOneDeleteOtherAddAgain) {
const base::string16 kHistoryUrl( const base::string16 kHistoryUrl(
ASCIIToUTF16("http://www.add-delete-add-history.google.com/")); ASCIIToUTF16("http://www.add-delete-add-history.google.com/"));
ASSERT_TRUE(SetupSync()) << "SetupSync() failed."; ASSERT_TRUE(SetupSync()) << "SetupSync() failed.";
......
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