Tests: Add sscl Nursery tests.

We'll evetually move these into sscl.
This commit is contained in:
2026-06-09 05:50:28 -04:00
parent b0d67596d0
commit 5b81ea893c
2 changed files with 651 additions and 0 deletions
+14
View File
@@ -30,3 +30,17 @@ add_dependencies(stagingBuffer_tests gtest_main)
# Add the test to CTest
add_test(NAME stagingBuffer_tests COMMAND stagingBuffer_tests)
# Create a test executable for NonViralTaskNursery
add_executable(nonViralTaskNursery_tests
libspinscale/nonViralTaskNursery_tests.cpp)
target_link_libraries(nonViralTaskNursery_tests
gtest_main
spinscale
${Boost_LIBRARIES}
)
add_dependencies(nonViralTaskNursery_tests gtest_main)
add_test(NAME nonViralTaskNursery_tests COMMAND nonViralTaskNursery_tests)