From bf572d91b50f818a7c3e29340cccf1931939ff8b Mon Sep 17 00:00:00 2001 From: Yabin Cui Date: Tue, 11 Aug 2015 11:23:16 -0700 Subject: Fix flaky test time.timer_settime_0. It fixes the problem reported in https://code.google.com/p/android/issues/detail?id=182395. Change-Id: Ie16aa04095dac08a62dd0d4c50e763b36526624c --- tests/time_test.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/time_test.cpp b/tests/time_test.cpp index 42c20d3..0971de2 100644 --- a/tests/time_test.cpp +++ b/tests/time_test.cpp @@ -271,8 +271,8 @@ TEST(time, timer_settime_0) { Counter counter(Counter::CountAndDisarmNotifyFunction); ASSERT_EQ(0, counter.Value()); - counter.SetTime(0, 1, 1, 0); - usleep(500000); + counter.SetTime(0, 500000000, 1, 0); + sleep(1); // The count should just be 1 because we disarmed the timer the first time it fired. ASSERT_EQ(1, counter.Value()); -- cgit v1.1