aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYabin Cui <yabinc@google.com>2015-08-11 18:41:17 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2015-08-11 18:41:17 +0000
commit0fdcdd0067af88e7deef73070d0861ceb9f53c37 (patch)
treeaa668ecfa9218ebab90440531b846024cd6b679c
parent0f455612d3325932a851418634a17a61307948c5 (diff)
parentbf572d91b50f818a7c3e29340cccf1931939ff8b (diff)
downloadbionic-lollipop-mr1-cts-dev.tar.gz
-rw-r--r--tests/time_test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/time_test.cpp b/tests/time_test.cpp
index 42c20d3b8..0971de248 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());