OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include <list> | 5 #include <list> |
6 #include <map> | 6 #include <map> |
7 #include <set> | 7 #include <set> |
8 | 8 |
9 #include "base/scoped_ptr.h" | 9 #include "base/scoped_ptr.h" |
10 #include "base/time.h" | 10 #include "base/time.h" |
(...skipping 745 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
756 EXPECT_FALSE(interceptor.times_sync_occured().empty()); | 756 EXPECT_FALSE(interceptor.times_sync_occured().empty()); |
757 | 757 |
758 EXPECT_TRUE(syncer_thread()->Stop(2000)); | 758 EXPECT_TRUE(syncer_thread()->Stop(2000)); |
759 } | 759 } |
760 | 760 |
761 // TODO(skrul): The "Pause" and "PauseWhenNotConnected" tests are | 761 // TODO(skrul): The "Pause" and "PauseWhenNotConnected" tests are |
762 // marked FLAKY because they sometimes fail on the Windows buildbots. | 762 // marked FLAKY because they sometimes fail on the Windows buildbots. |
763 // I have been unable to reproduce this hang after extensive testing | 763 // I have been unable to reproduce this hang after extensive testing |
764 // on a local Windows machine so these tests will remain flaky in | 764 // on a local Windows machine so these tests will remain flaky in |
765 // order to help diagnose the problem. | 765 // order to help diagnose the problem. |
766 // | 766 // oshima: this is actually crashing and cause failure on XP Tests. |
| 767 // Disabling on windows. |
767 // This issue is tracked at http://crbug.com/39070. | 768 // This issue is tracked at http://crbug.com/39070. |
768 TEST_F(SyncerThreadWithSyncerTest, FLAKY_Pause) { | 769 #if defined(OS_WIN) |
| 770 #define MAYBE_Pause DISABLED_Pause |
| 771 #else |
| 772 #define MAYBE_Pause Pause |
| 773 #endif |
| 774 TEST_F(SyncerThreadWithSyncerTest, MAYBE_Pause) { |
769 WaitableEvent sync_cycle_ended_event(false, false); | 775 WaitableEvent sync_cycle_ended_event(false, false); |
770 WaitableEvent paused_event(false, false); | 776 WaitableEvent paused_event(false, false); |
771 WaitableEvent resumed_event(false, false); | 777 WaitableEvent resumed_event(false, false); |
772 PreventThreadFromPolling(); | 778 PreventThreadFromPolling(); |
773 | 779 |
774 ListenerMock listener; | 780 ListenerMock listener; |
775 scoped_ptr<ChannelHookup<SyncerEvent> > hookup; | 781 scoped_ptr<ChannelHookup<SyncerEvent> > hookup; |
776 hookup.reset(syncer_thread()->relay_channel()->AddObserver(&listener)); | 782 hookup.reset(syncer_thread()->relay_channel()->AddObserver(&listener)); |
777 | 783 |
778 EXPECT_CALL(listener, HandleChannelEvent( | 784 EXPECT_CALL(listener, HandleChannelEvent( |
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
953 EXPECT_CALL(listener, HandleChannelEvent( | 959 EXPECT_CALL(listener, HandleChannelEvent( |
954 Field(&SyncerEvent::what_happened, SyncerEvent::SYNC_CYCLE_ENDED))). | 960 Field(&SyncerEvent::what_happened, SyncerEvent::SYNC_CYCLE_ENDED))). |
955 WillOnce(SignalEvent(&sync_cycle_ended_event)); | 961 WillOnce(SignalEvent(&sync_cycle_ended_event)); |
956 ASSERT_TRUE(Resume(&listener)); | 962 ASSERT_TRUE(Resume(&listener)); |
957 ASSERT_TRUE(sync_cycle_ended_event.TimedWait(max_wait_time_)); | 963 ASSERT_TRUE(sync_cycle_ended_event.TimedWait(max_wait_time_)); |
958 | 964 |
959 EXPECT_TRUE(syncer_thread()->Stop(2000)); | 965 EXPECT_TRUE(syncer_thread()->Stop(2000)); |
960 } | 966 } |
961 | 967 |
962 } // namespace browser_sync | 968 } // namespace browser_sync |
OLD | NEW |