summaryrefslogtreecommitdiffstats
path: root/chrome/browser/sync
diff options
context:
space:
mode:
authorjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-03-02 23:10:18 +0000
committerjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-03-02 23:10:18 +0000
commit4e4d41bb2689f322816f12dd8d816c5f87af388f (patch)
tree52feb372ba4048ef8c858e45e6cb70a077127682 /chrome/browser/sync
parent67bc18f8e2f8b55d975b58c97e57e701a23973e6 (diff)
downloadchromium_src-4e4d41bb2689f322816f12dd8d816c5f87af388f.zip
chromium_src-4e4d41bb2689f322816f12dd8d816c5f87af388f.tar.gz
chromium_src-4e4d41bb2689f322816f12dd8d816c5f87af388f.tar.bz2
Disable ProfileSyncServiceAutofillTest since they're causing hangs.
BUG=37244 Review URL: http://codereview.chromium.org/661411 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40450 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/sync')
-rw-r--r--chrome/browser/sync/profile_sync_service_autofill_unittest.cc9
1 files changed, 6 insertions, 3 deletions
diff --git a/chrome/browser/sync/profile_sync_service_autofill_unittest.cc b/chrome/browser/sync/profile_sync_service_autofill_unittest.cc
index a91ec3b..0d00dc6 100644
--- a/chrome/browser/sync/profile_sync_service_autofill_unittest.cc
+++ b/chrome/browser/sync/profile_sync_service_autofill_unittest.cc
@@ -277,7 +277,8 @@ class ProfileSyncServiceAutofillTest : public testing::Test {
// TODO(sync): Test unrecoverable error during MA.
-TEST_F(ProfileSyncServiceAutofillTest, EmptyNativeEmptySync) {
+// http://code.google.com/p/chromium/issues/detail?id=37244
+TEST_F(ProfileSyncServiceAutofillTest, DISABLED_EmptyNativeEmptySync) {
EXPECT_CALL(web_database_, GetAllAutofillEntries(_)).WillOnce(Return(true));
SetIdleChangeProcessorExpectations();
StartSyncService();
@@ -286,7 +287,8 @@ TEST_F(ProfileSyncServiceAutofillTest, EmptyNativeEmptySync) {
EXPECT_EQ(0U, sync_entries.size());
}
-TEST_F(ProfileSyncServiceAutofillTest, HasNativeEmptySync) {
+// http://code.google.com/p/chromium/issues/detail?id=37244
+TEST_F(ProfileSyncServiceAutofillTest, DISABLED_HasNativeEmptySync) {
std::vector<AutofillEntry> entries;
entries.push_back(MakeAutofillEntry("foo", "bar", 1));
EXPECT_CALL(web_database_, GetAllAutofillEntries(_)).
@@ -299,7 +301,8 @@ TEST_F(ProfileSyncServiceAutofillTest, HasNativeEmptySync) {
EXPECT_TRUE(entries[0] == sync_entries[0]);
}
-TEST_F(ProfileSyncServiceAutofillTest, HasNativeWithDuplicatesEmptySync) {
+// http://code.google.com/p/chromium/issues/detail?id=37244
+TEST_F(ProfileSyncServiceAutofillTest, DISABLED_HasNativeWithDuplicatesEmptySync) {
// There is buggy autofill code that allows duplicate name/value
// pairs to exist in the database with separate pair_ids.
std::vector<AutofillEntry> entries;