We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ae2991 commit 897919fCopy full SHA for 897919f
CHANGELOG
@@ -3,6 +3,7 @@
3
- Added server-client shared memory test case
4
- Added GitHub CI workflow for automated testing across Ubuntu, Windows, and macOS
5
- Added CI status badge to README
6
+- Added CTest integration for automated test discovery
7
8
# v1.0.2.1 - 2025-10-01
9
- Fixed buffer wrap read logic to properly retry from wrapped position
tests/CMakeLists.txt
@@ -1,3 +1,6 @@
1
add_executable(slick_queue_tests tests.cpp shm_tests.cpp)
2
target_link_libraries(slick_queue_tests PRIVATE slick_queue)
+
+enable_testing()
+add_test(NAME slick_queue_tests COMMAND slick_queue_tests)
0 commit comments