OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 <windows.h> | 5 #include <windows.h> |
6 #include <mmsystem.h> | 6 #include <mmsystem.h> |
7 #include <process.h> | 7 #include <process.h> |
8 | 8 |
| 9 #include "base/platform_thread.h" |
9 #include "base/time.h" | 10 #include "base/time.h" |
10 #include "testing/gtest/include/gtest/gtest.h" | 11 #include "testing/gtest/include/gtest/gtest.h" |
11 | 12 |
12 using base::Time; | 13 using base::Time; |
13 using base::TimeDelta; | 14 using base::TimeDelta; |
14 using base::TimeTicks; | 15 using base::TimeTicks; |
15 | 16 |
16 namespace { | 17 namespace { |
17 | 18 |
18 class MockTimeTicks : public TimeTicks { | 19 class MockTimeTicks : public TimeTicks { |
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
196 // measurements are still useful for testing timers on various platforms. | 197 // measurements are still useful for testing timers on various platforms. |
197 // The reason to remove the check is because the tests run on many | 198 // The reason to remove the check is because the tests run on many |
198 // buildbots, some of which are VMs. These machines can run horribly | 199 // buildbots, some of which are VMs. These machines can run horribly |
199 // slow, and there is really no value for checking against a max timer. | 200 // slow, and there is really no value for checking against a max timer. |
200 //EXPECT_LT((stop - start).InMilliseconds(), kMaxTime); | 201 //EXPECT_LT((stop - start).InMilliseconds(), kMaxTime); |
201 printf("%s: %1.2fus per call\n", cases[test_case].description, | 202 printf("%s: %1.2fus per call\n", cases[test_case].description, |
202 (stop - start).InMillisecondsF() * 1000 / kLoops); | 203 (stop - start).InMillisecondsF() * 1000 / kLoops); |
203 test_case++; | 204 test_case++; |
204 } | 205 } |
205 } | 206 } |
| 207 |
| 208 TEST(TimeTicks, Drift) { |
| 209 const int kIterations = 100; |
| 210 int64 total_drift = 0; |
| 211 |
| 212 for (int i = 0; i < kIterations; ++i) { |
| 213 int64 drift_microseconds = TimeTicks::GetQPCDriftMicroseconds(); |
| 214 |
| 215 // Make sure the drift never exceeds our limit. |
| 216 EXPECT_LT(drift_microseconds, 50000); |
| 217 |
| 218 // Sleep for a few milliseconds (note that it means 1000 microseconds). |
| 219 // If we check the drift too frequently, it's going to increase |
| 220 // monotonically, making our measurement less realistic. |
| 221 PlatformThread::Sleep((i % 2 == 0) ? 1 : 2); |
| 222 |
| 223 total_drift += drift_microseconds; |
| 224 } |
| 225 |
| 226 // Sanity check. We expect some time drift to occur, especially across |
| 227 // the number of iterations we do. However, if the QPC is disabled, this |
| 228 // is not measuring anything (drift is zero in that case). |
| 229 EXPECT_LT(0, total_drift); |
| 230 |
| 231 printf("average time drift in microseconds: %lld\n", |
| 232 total_drift / kIterations); |
| 233 } |
OLD | NEW |