Skip to content

Commit 0ed95ee

Browse files
committed
[sanitizers] Switch everything to abort_on_error=1
1 parent 22f0b4e commit 0ed95ee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

zorg/buildbot/builders/sanitizers/buildbot_functions.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ function build_stage2 {
293293
export ASAN_SYMBOLIZER_PATH="${llvm_symbolizer_path}"
294294
# TODO strict_init_order=true
295295
export ASAN_OPTIONS="check_initialization_order=true"
296-
export ASAN_OPTIONS+=":${san_options}:abort_on_error=0"
296+
export ASAN_OPTIONS+=":${san_options}"
297297
llvm_use_sanitizer="Address"
298298
fsanitize_flag="-fsanitize=address"
299299
elif [ "$sanitizer_name" == "hwasan" ]; then
@@ -305,7 +305,7 @@ function build_stage2 {
305305
cmake_stage2_common_options+=" -DLLVM_ENABLE_PLUGINS=OFF"
306306
elif [ "$sanitizer_name" == "ubsan" ]; then
307307
export UBSAN_OPTIONS="external_symbolizer_path=${llvm_symbolizer_path}:print_stacktrace=1"
308-
export UBSAN_OPTIONS+=":${san_options}:abort_on_error=0"
308+
export UBSAN_OPTIONS+=":${san_options}"
309309
llvm_use_sanitizer="Undefined"
310310
fsanitize_flag="-fsanitize=undefined -fno-sanitize-recover=all"
311311
# FIXME: After switching to LLVM_ENABLE_RUNTIMES, vptr has infitine

0 commit comments

Comments
 (0)