|
|
|
@ -1488,8 +1488,8 @@ BOOST_AUTO_TEST_CASE(util_time_GetTime)
|
|
|
|
|
{
|
|
|
|
|
SetMockTime(111);
|
|
|
|
|
// Check that mock time does not change after a sleep
|
|
|
|
|
for (const auto& num_sleep : {0, 1}) {
|
|
|
|
|
UninterruptibleSleep(std::chrono::milliseconds{num_sleep});
|
|
|
|
|
for (const auto& num_sleep : {0ms, 1ms}) {
|
|
|
|
|
UninterruptibleSleep(num_sleep);
|
|
|
|
|
BOOST_CHECK_EQUAL(111, GetTime()); // Deprecated time getter
|
|
|
|
|
BOOST_CHECK_EQUAL(111, GetTime<std::chrono::seconds>().count());
|
|
|
|
|
BOOST_CHECK_EQUAL(111000, GetTime<std::chrono::milliseconds>().count());
|
|
|
|
@ -1497,10 +1497,14 @@ BOOST_AUTO_TEST_CASE(util_time_GetTime)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SetMockTime(0);
|
|
|
|
|
// Check that system time changes after a sleep
|
|
|
|
|
// Check that steady time and system time changes after a sleep
|
|
|
|
|
const auto steady_ms_0 = Now<SteadyMilliseconds>();
|
|
|
|
|
const auto steady_0 = std::chrono::steady_clock::now();
|
|
|
|
|
const auto ms_0 = GetTime<std::chrono::milliseconds>();
|
|
|
|
|
const auto us_0 = GetTime<std::chrono::microseconds>();
|
|
|
|
|
UninterruptibleSleep(std::chrono::milliseconds{1});
|
|
|
|
|
UninterruptibleSleep(1ms);
|
|
|
|
|
BOOST_CHECK(steady_ms_0 < Now<SteadyMilliseconds>());
|
|
|
|
|
BOOST_CHECK(steady_0 + 1ms <= std::chrono::steady_clock::now());
|
|
|
|
|
BOOST_CHECK(ms_0 < GetTime<std::chrono::milliseconds>());
|
|
|
|
|
BOOST_CHECK(us_0 < GetTime<std::chrono::microseconds>());
|
|
|
|
|
}
|
|
|
|
|