Add enable no-sanitize-recover for all UBSan checks.

This commit is contained in:
hashlag
2026-07-06 03:41:35 +03:00
parent 8351bf2b74
commit b220221c8b
+2 -2
View File
@@ -41,8 +41,8 @@ if(CHAOS_COVERAGE)
endif() endif()
if(CHAOS_ASANUBSAN) if(CHAOS_ASANUBSAN)
target_compile_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) target_link_options(ChaosTests PRIVATE -fsanitize=address,undefined -fno-sanitize-recover=all)
endif() endif()
include(GoogleTest) include(GoogleTest)