We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent acc06ab commit d36c764Copy full SHA for d36c764
1 file changed
CMakeLists.txt
@@ -239,6 +239,12 @@ enable_testing()
239
set_property(GLOBAL PROPERTY CTEST_TARGETS_ADDED TRUE)
240
241
foreach(test ${TESTS})
242
+ # Skip guard page test on macOS when coverage is enabled (coverage instrumentation changes signal behavior)
243
+ if(ENABLE_COVERAGE AND APPLE AND "${test}" STREQUAL "test_yafl_guard")
244
+ message(STATUS "Skipping ${test} on macOS (coverage enabled)")
245
+ continue()
246
+ endif()
247
+
248
# Use absolute path to binary so tests run from build directory
249
add_test(NAME ${test} COMMAND ${test})
250
endforeach()
0 commit comments