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

Unified Diff: sync/engine/sync_scheduler_unittest.cc

Issue 468703002: Disable SyncSchedulerTest.FailedRetry on Windows as its timing out. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/engine/sync_scheduler_unittest.cc
diff --git a/sync/engine/sync_scheduler_unittest.cc b/sync/engine/sync_scheduler_unittest.cc
index 6387ac79d1638c076983b675adb5c3a6f0057641..4c330416cb0a2b774680b3b753e60a7e1d42582b 100644
--- a/sync/engine/sync_scheduler_unittest.cc
+++ b/sync/engine/sync_scheduler_unittest.cc
@@ -1336,7 +1336,13 @@ TEST_F(SyncSchedulerTest, MAYBE_SuccessfulRetry) {
StopSyncScheduler();
}
-TEST_F(SyncSchedulerTest, FailedRetry) {
+#if defined(OS_WIN)
+// Times out: http://crbug.com/402212
+#define MAYBE_FailedRetry DISABLED_FailedRetry
+#else
+#define MAYBE_FailedRetry FailedRetry
+#endif
+TEST_F(SyncSchedulerTest, MAYBE_FailedRetry) {
UseMockDelayProvider();
EXPECT_CALL(*delay(), GetDelay(_))
.WillRepeatedly(Return(TimeDelta::FromMilliseconds(1)));
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698