build(test): link tbb to fix gcc compilation issues

This commit is contained in:
light7734 2025-10-08 06:30:11 +03:30
parent 77c04d38c9
commit 20ef8c04d8
Signed by: light7734
GPG key ID: 8C30176798F1A6BA
2 changed files with 3 additions and 1 deletions

View file

@ -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)

View file

@ -321,7 +321,6 @@ struct TestSuite
template<typename TSuite>
TestSuite(TSuite body)
{
std::println("CONSTRUCTOR");
#ifndef LIGHT_SKIP_TESTS
details::Registry::register_suite(+body);
#endif