Add enable no-sanitize-recover for all UBSan checks.
Chaos Ci / test-and-benchmark (push) Successful in 3m22s

This commit is contained in:
hashlag
2026-07-06 03:41:35 +03:00
parent 0126196ea8
commit f37271ec5b
+2 -2
View File
@@ -40,8 +40,8 @@ if(CHAOS_COVERAGE)
endif()
if(CHAOS_ASANUBSAN)
target_compile_options(ChaosTests PRIVATE -fsanitize=address,undefined)
target_link_options(ChaosTests PRIVATE -fsanitize=address,undefined)
target_compile_options(ChaosTests PRIVATE -fsanitize=address,undefined -fno-sanitize-recover=all)
target_link_options(ChaosTests PRIVATE -fsanitize=address,undefined -fno-sanitize-recover=all)
endif()
include(GoogleTest)