3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-27 10:55:50 +00:00

[TravisCI] Don't print sanitizer suppressions by default because

that breaks Z3's regression tests.
This commit is contained in:
Dan Liew 2017-10-15 15:27:10 +01:00
parent 35f6746c60
commit ad2a0a0085
5 changed files with 26 additions and 3 deletions

View file

@ -88,6 +88,10 @@ if [ -n "${ASAN_DSO}" ]; then
BUILD_OPTS+=("--build-arg" "ASAN_DSO=${ASAN_DSO}")
fi
if [ -n "${SANITIZER_PRINT_SUPPRESSIONS}" ]; then
BUILD_OPTS+=("--build-arg" "SANITIZER_PRINT_SUPPRESSIONS=${SANITIZER_PRINT_SUPPRESSIONS}")
fi
if [ -n "${UBSAN_BUILD}" ]; then
BUILD_OPTS+=("--build-arg" "UBSAN_BUILD=${UBSAN_BUILD}")
fi