File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
zorg/buildbot/builders/sanitizers Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -285,12 +285,14 @@ function build_stage2 {
285
285
286
286
if [ " $sanitizer_name " == " msan" ]; then
287
287
export MSAN_SYMBOLIZER_PATH=" ${llvm_symbolizer_path} "
288
- export MSAN_OPTIONS=" log_path=${log_path} :log_exe_name=1"
288
+ export MSAN_OPTIONS=" abort_on_error=1"
289
+ export MSAN_OPTIONS+=" :log_path=${log_path} :log_exe_name=1"
289
290
llvm_use_sanitizer=" Memory"
290
291
fsanitize_flag=" -fsanitize=memory"
291
292
elif [ " $sanitizer_name " == " msan_track_origins" ]; then
292
293
export MSAN_SYMBOLIZER_PATH=" ${llvm_symbolizer_path} "
293
- export MSAN_OPTIONS=" log_path=${log_path} :log_exe_name=1"
294
+ export MSAN_OPTIONS=" abort_on_error=1"
295
+ export MSAN_OPTIONS+=" :log_path=${log_path} :log_exe_name=1"
294
296
llvm_use_sanitizer=" MemoryWithOrigins"
295
297
fsanitize_flag=" -fsanitize=memory -fsanitize-memory-track-origins"
296
298
elif [ " $sanitizer_name " == " asan" ]; then
You can’t perform that action at this time.
0 commit comments