From 03f208f0b916d0c657db0159a3f4437deacd6a6d Mon Sep 17 00:00:00 2001 From: "hbono@chromium.org" Date: Mon, 30 May 2011 08:06:50 +0000 Subject: Add FAILS_ prefixes to failing tests on Windows. This change adds FAILS_ prefixes to two sync tests (MultipleClientLiveTypedUrlsSyncTest.AddToAll and TwoClientLiveTypedUrlsSyncTest.DisableEnableSync), that has been failing since r87186 . TBR=jasonwkim BUG=84410 TEST=make the "Win7 Sync" bot green. Review URL: http://codereview.chromium.org/7084025 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@87217 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/test/live_sync/multiple_client_live_typed_urls_sync_test.cc | 5 +++++ chrome/test/live_sync/two_client_live_typed_urls_sync_test.cc | 6 ++++++ 2 files changed, 11 insertions(+) diff --git a/chrome/test/live_sync/multiple_client_live_typed_urls_sync_test.cc b/chrome/test/live_sync/multiple_client_live_typed_urls_sync_test.cc index 8adffaf..4d031f9 100644 --- a/chrome/test/live_sync/multiple_client_live_typed_urls_sync_test.cc +++ b/chrome/test/live_sync/multiple_client_live_typed_urls_sync_test.cc @@ -29,7 +29,12 @@ IN_PROC_BROWSER_TEST_F(MultipleClientLiveTypedUrlsSyncTest, AddToOne) { AssertAllProfilesHaveSameURLsAsVerifier(); } +#if defined(OS_WIN) +// This test fails on the "Win7 Sync" bot. See http://crbug.com/84410. +IN_PROC_BROWSER_TEST_F(MultipleClientLiveTypedUrlsSyncTest, FAILS_AddToAll) { +#else IN_PROC_BROWSER_TEST_F(MultipleClientLiveTypedUrlsSyncTest, AddToAll) { +#endif const string16 kHistoryUrl( ASCIIToUTF16("http://www.add-all-history.google.com/")); ASSERT_TRUE(SetupSync()) << "SetupSync() failed."; diff --git a/chrome/test/live_sync/two_client_live_typed_urls_sync_test.cc b/chrome/test/live_sync/two_client_live_typed_urls_sync_test.cc index 49777c1..b9a8623 100644 --- a/chrome/test/live_sync/two_client_live_typed_urls_sync_test.cc +++ b/chrome/test/live_sync/two_client_live_typed_urls_sync_test.cc @@ -59,7 +59,13 @@ IN_PROC_BROWSER_TEST_F(TwoClientLiveTypedUrlsSyncTest, AddThenDelete) { } // TCM: 3643277 +#if defined(OS_WIN) +// This test fails on the "Win7 Sync" bot. See http://crbug.com/84410. +IN_PROC_BROWSER_TEST_F(TwoClientLiveTypedUrlsSyncTest, + FAILS_DisableEnableSync) { +#else IN_PROC_BROWSER_TEST_F(TwoClientLiveTypedUrlsSyncTest, DisableEnableSync) { +#endif const string16 kUrl1(ASCIIToUTF16("http://history1.google.com/")); const string16 kUrl2(ASCIIToUTF16("http://history2.google.com/")); ASSERT_TRUE(SetupSync()) << "SetupSync() failed."; -- cgit v1.1