maybe this teardown fixes the leak

This commit is contained in:
2022-07-25 22:22:08 +02:00
parent c12669fe50
commit db33f9cc7e
4 changed files with 9 additions and 2 deletions

View File

@ -13,6 +13,7 @@
#include <catch2/catch_session.hpp>
extern int customSetup();
extern int customTeardown();
int main(int argc, char* argv[]) {
customSetup();
@ -21,5 +22,6 @@ int main(int argc, char* argv[]) {
int result = Catch::Session().run(argc, argv);
// global clean-up
customTeardown();
return result;
}