Skip to content

Commit

Permalink
async logger test - target of log action limited to 10 ms instead of …
Browse files Browse the repository at this point in the history
…50 ms
  • Loading branch information
remibettan committed Jan 12, 2021
1 parent d989769 commit 7028d22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion unit-tests/log/test-multi-thread-logs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ TEST_CASE("async logger", "[log][async_log]")
std::cout << "max time = " << max_time.count() << " ms, on iteration: " << max_time_iteration << std::endl;
std::cout << "min time = " << min_time.count() << " ms" << std::endl;
std::cout << "avg time = " << (float) (avg_time.count()) / (number_of_iterations * 10.f) << " ms" << std::endl;
REQUIRE(max_time.count() < 50);
REQUIRE(max_time.count() < 10);
}
#endif

Expand Down

0 comments on commit 7028d22

Please sign in to comment.