Index: test/cctest/test-cpu-profiler.cc |
diff --git a/test/cctest/test-cpu-profiler.cc b/test/cctest/test-cpu-profiler.cc |
index 0dfbb2c44c52337ae2067b648c26986674dddacf..3f0fb802b9772c57d4709c096f53e6fdc723e7f6 100644 |
--- a/test/cctest/test-cpu-profiler.cc |
+++ b/test/cctest/test-cpu-profiler.cc |
@@ -415,13 +415,13 @@ TEST(ProfileStartEndTime) { |
v8::HandleScope scope(env->GetIsolate()); |
v8::CpuProfiler* cpu_profiler = env->GetIsolate()->GetCpuProfiler(); |
- double time_before_profiling = i::OS::Ticks(); |
+ double time_before_profiling = i::OS::TimeCurrentMillis(); |
v8::Local<v8::String> profile_name = v8::String::New("test"); |
cpu_profiler->StartCpuProfiling(profile_name); |
const v8::CpuProfile* profile = cpu_profiler->StopCpuProfiling(profile_name); |
CHECK(time_before_profiling <= profile->GetStartTime()); |
CHECK(profile->GetStartTime() <= profile->GetEndTime()); |
- CHECK(profile->GetEndTime() <= i::OS::Ticks()); |
+ CHECK(profile->GetEndTime() <= i::OS::TimeCurrentMillis()); |
} |