diff --git a/modules/test/CMakeLists.txt b/modules/test/CMakeLists.txt index 7b7e9b0..a978884 100644 --- a/modules/test/CMakeLists.txt +++ b/modules/test/CMakeLists.txt @@ -1,4 +1,7 @@ add_library_module(test test.cpp entrypoint.cpp) add_library_module(fuzz_test test.cpp fuzz.cpp) +target_link_libraries(test PUBLIC tbb) +target_link_libraries(fuzz_test PUBLIC tbb) + add_test_module(test test.test.cpp) diff --git a/modules/test/public/test.hpp b/modules/test/public/test.hpp index 64d1754..13987a2 100644 --- a/modules/test/public/test.hpp +++ b/modules/test/public/test.hpp @@ -321,7 +321,6 @@ struct TestSuite template TestSuite(TSuite body) { - std::println("CONSTRUCTOR"); #ifndef LIGHT_SKIP_TESTS details::Registry::register_suite(+body); #endif