Rewrite cache loader to async framework (#1193)

Fixes #1188
This commit is contained in:
Alex Kremer
2024-02-20 19:24:49 +00:00
committed by GitHub
parent 27fe35a2d1
commit 190b5c6a37
21 changed files with 947 additions and 472 deletions

View File

@@ -47,7 +47,7 @@ assertImpl(
<< fmt::format(format, std::forward<Args>(args)...) << "\n"
<< "Stacktrace:\n"
<< boost::stacktrace::stacktrace() << "\n";
std::abort();
std::exit(EXIT_FAILURE); // std::abort does not flush gcovr output and causes uncovered lines
}
}