Merge "Remove warning: vehicle RecurrentTimer_test.cpp"

This commit is contained in:
TreeHugger Robot 2017-03-08 18:29:02 +00:00 committed by Android (Google) Code Review
commit b5bec3d243

View file

@ -35,11 +35,11 @@ TEST(RecurrentTimerTest, oneInterval) {
auto counterRef = std::ref(counter);
RecurrentTimer timer([&counterRef](const std::vector<int32_t>& cookies) {
ASSERT_EQ(1u, cookies.size());
ASSERT_EQ(0xDeadBeef, cookies.front());
ASSERT_EQ(0xdead, cookies.front());
counterRef.get()++;
});
timer.registerRecurrentEvent(milliseconds(1), 0xDeadBeef);
timer.registerRecurrentEvent(milliseconds(1), 0xdead);
std::this_thread::sleep_for(milliseconds(100));
ASSERT_EQ_WITH_TOLERANCE(100, counter.load(), 20);
}