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

Unified Diff: chrome/browser/sync/engine/syncer_thread_unittest.cc

Issue 2981009: Disable SyncerThreadTest.Pause on Windows because it's crashing. (Closed) Base URL: git://git.chromium.org/chromium.git
Patch Set: Created 10 years, 5 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: chrome/browser/sync/engine/syncer_thread_unittest.cc
diff --git a/chrome/browser/sync/engine/syncer_thread_unittest.cc b/chrome/browser/sync/engine/syncer_thread_unittest.cc
index 3d2c83dc75f833571c3cdbf9f1b6569e2380c65c..79e26653366c82af1b6615d6b17051a7383dab58 100644
--- a/chrome/browser/sync/engine/syncer_thread_unittest.cc
+++ b/chrome/browser/sync/engine/syncer_thread_unittest.cc
@@ -763,9 +763,15 @@ TEST_F(SyncerThreadWithSyncerTest, AuthInvalid) {
// I have been unable to reproduce this hang after extensive testing
// on a local Windows machine so these tests will remain flaky in
// order to help diagnose the problem.
-//
+// oshima: this is actually crashing and cause failure on XP Tests.
+// Disabling on windows.
// This issue is tracked at http://crbug.com/39070.
-TEST_F(SyncerThreadWithSyncerTest, FLAKY_Pause) {
+#if defined(OS_WIN)
+#define MAYBE_Pause DISABLED_Pause
+#else
+#define MAYBE_Pause Pause
+#endif
+TEST_F(SyncerThreadWithSyncerTest, MAYBE_Pause) {
WaitableEvent sync_cycle_ended_event(false, false);
WaitableEvent paused_event(false, false);
WaitableEvent resumed_event(false, false);
« 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