refactor(test): use single executable

This commit is contained in:
Aleksei Bavshin
2022-01-07 18:59:08 -08:00
parent c0d84853ea
commit 8c41aaae04
4 changed files with 32 additions and 24 deletions

View File

@ -1,4 +1,3 @@
#define CATCH_CONFIG_RUNNER
#include "util/SafeSignal.hpp"
#include <glibmm.h>
@ -138,8 +137,3 @@ TEST_CASE_METHOD(GlibTestsFixture, "SafeSignal copy/move counter", "[signal][thr
producer.join();
REQUIRE(count == NUM_EVENTS);
}
int main(int argc, char* argv[]) {
Glib::init();
return Catch::Session().run(argc, argv);
}