X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/f9cfb6b592cf376bcf9e0ba3ce7c446e58d62255..646c8fd6c0112573ba2aae7f165f5d48e849831e:/tests/CMakeLists.txt diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 250f5e06..8fc662c6 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -49,3 +49,12 @@ add_executable ( test_filter_params_log test_filter_params_log.cpp ../projects/s target_link_libraries ( test_filter_params_log logger scriptexecuter common Boost::unit_test_framework Threads::Threads ) target_include_directories ( test_filter_params_log PRIVATE ${CMAKE_CURRENT_SOURCE_DIR} ../projects/stargazer ) add_test ( filter_params_log test_filter_params_log ) + +add_executable ( test_subscriptions test_subscriptions.cpp ) +target_link_libraries ( test_subscriptions Boost::unit_test_framework ) +add_test ( subscriptions test_subscriptions ) + +add_executable ( test_async_pool test_async_pool.cpp ../projects/stargazer/async_pool.cpp ) +target_include_directories ( test_async_pool PRIVATE ${CMAKE_CURRENT_SOURCE_DIR} ../projects/stargazer ) +target_link_libraries ( test_async_pool Boost::unit_test_framework Threads::Threads ) +add_test ( async_pool test_async_pool )