summaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorDimitri Staessens <dimitri@ouroboros.rocks>2026-02-04 13:50:01 +0100
committerSander Vrijders <sander@ouroboros.rocks>2026-02-13 09:22:29 +0100
commit7ed1b82e13fd70f3e68c4d6ec320377e4c27174f (patch)
tree20e2f772433c7280a3e3c3963999375f39c6e2e9 /cmake
parent3796f6b04b5fce183e5480b57725545cda033f99 (diff)
downloadouroboros-7ed1b82e13fd70f3e68c4d6ec320377e4c27174f.tar.gz
ouroboros-7ed1b82e13fd70f3e68c4d6ec320377e4c27174f.zip
build: Fix assertion tests core dump state message
The message for enabled/disabled state of the assertion tests core dumping was reversed. Signed-off-by: Dimitri Staessens <dimitri@ouroboros.rocks> Signed-off-by: Sander Vrijders <sander@ouroboros.rocks>
Diffstat (limited to 'cmake')
-rw-r--r--cmake/config/tests.cmake6
1 files changed, 3 insertions, 3 deletions
diff --git a/cmake/config/tests.cmake b/cmake/config/tests.cmake
index 24730989..37c06ca9 100644
--- a/cmake/config/tests.cmake
+++ b/cmake/config/tests.cmake
@@ -9,9 +9,9 @@ else()
endif()
set(DISABLE_TESTS_CORE_DUMPS TRUE CACHE BOOL
- "Enable core dumps for tests (useful for debugging)")
+ "Disable core dumps for tests")
if(DISABLE_TESTS_CORE_DUMPS)
- message(STATUS "Core dumps in tests enabled")
-else()
message(STATUS "Core dumps in tests disabled")
+else()
+ message(STATUS "Core dumps in tests enabled")
endif()