Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7)

Unified Diff: components/sync/driver/glue/sync_backend_host_impl_unittest.cc

Issue 2449853005: Disable two components_unittests that fail on ios (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/network_time/network_time_tracker_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/sync/driver/glue/sync_backend_host_impl_unittest.cc
diff --git a/components/sync/driver/glue/sync_backend_host_impl_unittest.cc b/components/sync/driver/glue/sync_backend_host_impl_unittest.cc
index 1cbebb7ce6c7e2bde520cb4b37c7ded3c6faf5af..31626ca53b869c45d7f490f2199dafb7a2126f56 100644
--- a/components/sync/driver/glue/sync_backend_host_impl_unittest.cc
+++ b/components/sync/driver/glue/sync_backend_host_impl_unittest.cc
@@ -293,7 +293,14 @@ TEST_F(SyncBackendHostTest, InitShutdown) {
}
// Test first time sync scenario. All types should be properly configured.
-TEST_F(SyncBackendHostTest, FirstTimeSync) {
+
+#if defined(OS_IOS)
+// http://crbug.com/658619
+#define MAYBE_FirstTimeSync DISABLED_FirstTimeSync
+#else
+#define MAYBE_FirstTimeSync FirstTimeSync
+#endif
+TEST_F(SyncBackendHostTest, MAYBE_FirstTimeSync) {
InitializeBackend(true);
EXPECT_EQ(ControlTypes(), fake_manager_->GetAndResetDownloadedTypes());
EXPECT_EQ(ControlTypes(), fake_manager_->InitialSyncEndedTypes());
« no previous file with comments | « components/network_time/network_time_tracker_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698