Update the ASan and UBSan flags

This commit is contained in:
Denis Blank 2018-01-29 00:36:08 +01:00
parent 8c8f7f98a1
commit 2deaf7a301

View File

@ -47,8 +47,9 @@ function renew_build {
} }
if [[ $CXX == *"clang"* ]]; then if [[ $CXX == *"clang"* ]]; then
LSAN_OPTIONS=verbosity=1:log_threads=1 LSAN_OPTIONS=verbosity=1:log_threads=1:abort_on_error=1
ASAN_OPTIONS=verbosity=1:abort_on_error=1 ASAN_OPTIONS=verbosity=1:log_threads=1:abort_on_error=1
UBSAN_OPTIONS=print_stacktrace=1:symbolize=1:halt_on_error=1:print_summary=1
# Build the test suite with various sanitizers: # Build the test suite with various sanitizers:
if [ $WITH_AWAIT != "ON" ]; then if [ $WITH_AWAIT != "ON" ]; then