| OLD | NEW |
| 1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 the V8 project authors. All rights reserved. |
| 2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
| 3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
| 4 // met: | 4 // met: |
| 5 // | 5 // |
| 6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
| 7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
| 8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
| 9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
| 10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 27 | 27 |
| 28 #include <cstdlib> | 28 #include <cstdlib> |
| 29 | 29 |
| 30 #include "v8.h" | 30 #include "v8.h" |
| 31 | 31 |
| 32 #if V8_OS_POSIX |
| 33 #include <sys/time.h> // NOLINT |
| 34 #endif |
| 35 |
| 32 #include "cctest.h" | 36 #include "cctest.h" |
| 33 #if V8_OS_WIN | 37 #if V8_OS_WIN |
| 34 #include "win32-headers.h" | 38 #include "win32-headers.h" |
| 35 #endif | 39 #endif |
| 36 | 40 |
| 37 using namespace v8::internal; | 41 using namespace v8::internal; |
| 38 | 42 |
| 39 | 43 |
| 40 TEST(TimeDeltaFromAndIn) { | 44 TEST(TimeDeltaFromAndIn) { |
| 41 CHECK(TimeDelta::FromDays(2) == TimeDelta::FromHours(48)); | 45 CHECK(TimeDelta::FromDays(2) == TimeDelta::FromHours(48)); |
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 186 } | 190 } |
| 187 | 191 |
| 188 | 192 |
| 189 TEST(TimeTicksHighResolutionNowResolution) { | 193 TEST(TimeTicksHighResolutionNowResolution) { |
| 190 if (!TimeTicks::IsHighResolutionClockWorking()) return; | 194 if (!TimeTicks::IsHighResolutionClockWorking()) return; |
| 191 | 195 |
| 192 // We assume that TimeTicks::HighResolutionNow() has sub-ms resolution. | 196 // We assume that TimeTicks::HighResolutionNow() has sub-ms resolution. |
| 193 static const TimeDelta kTargetGranularity = TimeDelta::FromMilliseconds(1); | 197 static const TimeDelta kTargetGranularity = TimeDelta::FromMilliseconds(1); |
| 194 ResolutionTest<TimeTicks>(&TimeTicks::HighResolutionNow, kTargetGranularity); | 198 ResolutionTest<TimeTicks>(&TimeTicks::HighResolutionNow, kTargetGranularity); |
| 195 } | 199 } |
| OLD | NEW |