improve unit tests

This commit is contained in:
Dirk-Jan C. Binnema
2023-09-24 20:21:57 +03:00
parent e0417f0766
commit 4a0eba8ddf
6 changed files with 52 additions and 23 deletions

View File

@ -211,7 +211,7 @@ test_logger_threads(void)
threads.emplace_back(
std::thread([n,&running]{
while (running) {
mu_debug("log message from thread <{}>", n);
//mu_debug("log message from thread <{}>", n);
std::this_thread::yield();
}
}));