| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
| 5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
| 6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 */ | 9 */ |
| 10 | 10 |
| 11 // TODO(tommi): Remove completely. As is there is still some code for Windows | 11 // TODO(tommi): Remove completely. As is there is still some code for Windows |
| 12 // that relies on ConditionVariableEventWin, but code has been removed on other | 12 // that relies on ConditionVariableEventWin, but code has been removed on other |
| 13 // platforms. | 13 // platforms. |
| 14 #if defined(WEBRTC_WIN) | 14 #if defined(WEBRTC_WIN) |
| 15 | 15 |
| 16 #include "webrtc/system_wrappers/source/condition_variable_event_win.h" | 16 #include "webrtc/system_wrappers/source/condition_variable_event_win.h" |
| 17 | 17 |
| 18 #include "testing/gtest/include/gtest/gtest.h" | 18 #include "testing/gtest/include/gtest/gtest.h" |
| 19 #include "webrtc/base/platform_thread.h" | 19 #include "webrtc/base/platform_thread.h" |
| 20 #include "webrtc/base/scoped_ptr.h" | 20 #include "webrtc/base/scoped_ptr.h" |
| 21 #include "webrtc/base/timeutils.h" |
| 21 #include "webrtc/system_wrappers/include/critical_section_wrapper.h" | 22 #include "webrtc/system_wrappers/include/critical_section_wrapper.h" |
| 22 #include "webrtc/system_wrappers/include/tick_util.h" | |
| 23 #include "webrtc/system_wrappers/include/trace.h" | 23 #include "webrtc/system_wrappers/include/trace.h" |
| 24 | 24 |
| 25 namespace webrtc { | 25 namespace webrtc { |
| 26 | 26 |
| 27 namespace { | 27 namespace { |
| 28 | 28 |
| 29 const int kLongWaitMs = 100 * 1000; // A long time in testing terms | 29 const int kLongWaitMs = 100 * 1000; // A long time in testing terms |
| 30 const int kShortWaitMs = 2 * 1000; // Long enough for process switches to happen | 30 const int kShortWaitMs = 2 * 1000; // Long enough for process switches to happen |
| 31 const int kVeryShortWaitMs = 20; // Used when we want a timeout | 31 const int kVeryShortWaitMs = 20; // Used when we want a timeout |
| 32 | 32 |
| (...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 185 ASSERT_TRUE(baton_.Grab(kShortWaitMs)); | 185 ASSERT_TRUE(baton_.Grab(kShortWaitMs)); |
| 186 } | 186 } |
| 187 EXPECT_EQ(2 * kNumberOfRounds, baton_.PassCount()); | 187 EXPECT_EQ(2 * kNumberOfRounds, baton_.PassCount()); |
| 188 } | 188 } |
| 189 | 189 |
| 190 TEST(CondVarWaitTest, WaitingWaits) { | 190 TEST(CondVarWaitTest, WaitingWaits) { |
| 191 CRITICAL_SECTION crit_sect; | 191 CRITICAL_SECTION crit_sect; |
| 192 InitializeCriticalSection(&crit_sect); | 192 InitializeCriticalSection(&crit_sect); |
| 193 ConditionVariableEventWin cond_var; | 193 ConditionVariableEventWin cond_var; |
| 194 EnterCriticalSection(&crit_sect); | 194 EnterCriticalSection(&crit_sect); |
| 195 int64_t start_ms = TickTime::MillisecondTimestamp(); | 195 int64_t start_ms = rtc::Time64(); |
| 196 EXPECT_FALSE(cond_var.SleepCS(&crit_sect, kVeryShortWaitMs)); | 196 EXPECT_FALSE(cond_var.SleepCS(&crit_sect, kVeryShortWaitMs)); |
| 197 int64_t end_ms = TickTime::MillisecondTimestamp(); | 197 int64_t end_ms = rtc::Time64(); |
| 198 EXPECT_LE(start_ms + kVeryShortWaitMs, end_ms) | 198 EXPECT_LE(start_ms + kVeryShortWaitMs, end_ms) |
| 199 << "actual elapsed:" << end_ms - start_ms; | 199 << "actual elapsed:" << end_ms - start_ms; |
| 200 LeaveCriticalSection(&crit_sect); | 200 LeaveCriticalSection(&crit_sect); |
| 201 DeleteCriticalSection(&crit_sect); | 201 DeleteCriticalSection(&crit_sect); |
| 202 } | 202 } |
| 203 | 203 |
| 204 } // anonymous namespace | 204 } // anonymous namespace |
| 205 | 205 |
| 206 } // namespace webrtc | 206 } // namespace webrtc |
| 207 | 207 |
| 208 #endif // defined(WEBRTC_WIN) | 208 #endif // defined(WEBRTC_WIN) |
| OLD | NEW |