diff options
author | cmp@chromium.org <cmp@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-08 03:47:21 +0000 |
---|---|---|
committer | cmp@chromium.org <cmp@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-08 03:47:21 +0000 |
commit | 9325bbf4446744dd9fdf877b6b363a0b9eb1127c (patch) | |
tree | 9daa7c09527365d38a22a39353eb0a3b048ba438 | |
parent | 94f85bf48cea631006db6085c7c31ba6c72c8323 (diff) | |
download | chromium_src-9325bbf4446744dd9fdf877b6b363a0b9eb1127c.zip chromium_src-9325bbf4446744dd9fdf877b6b363a0b9eb1127c.tar.gz chromium_src-9325bbf4446744dd9fdf877b6b363a0b9eb1127c.tar.bz2 |
Mark Autofill_P0 flaky on Linux.
BUG=102948
TBR=georgey@chromium.org
Review URL: http://codereview.chromium.org/8499004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@108974 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/browser/sync/test/integration/performance/autofill_sync_perf_test.cc | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/chrome/browser/sync/test/integration/performance/autofill_sync_perf_test.cc b/chrome/browser/sync/test/integration/performance/autofill_sync_perf_test.cc index 65b1717..4d1af3a 100644 --- a/chrome/browser/sync/test/integration/performance/autofill_sync_perf_test.cc +++ b/chrome/browser/sync/test/integration/performance/autofill_sync_perf_test.cc @@ -182,7 +182,15 @@ IN_PROC_BROWSER_TEST_F(AutofillSyncPerfTest, AutofillProfiles_P0) { SyncTimingHelper::PrintResult("autofill", "delete_autofill_profiles", dt); } -IN_PROC_BROWSER_TEST_F(AutofillSyncPerfTest, Autofill_P0) { + +// Flaky on Linux, see http://crbug.com/102948 +#if defined(OS_LINUX) +#define MAYBE_Autofill_P0 FLAKY_Autofill_P0 +#else +#define MAYBE_Autofill_P0 Autofill_P0 +#endif + +IN_PROC_BROWSER_TEST_F(AutofillSyncPerfTest, MAYBE_Autofill_P0) { ASSERT_TRUE(SetupSync()) << "SetupSync() failed."; AddKeys(0, kNumKeys); |