diff options
author | Alon Zakai <azakai@google.com> | 2019-12-02 19:25:19 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-02 19:25:19 -0800 |
commit | 0c2b5b417fdf897037d1e91e170601a67c80dab8 (patch) | |
tree | ba717d1bf95402fbc87584904f52a380e5216c38 | |
parent | 9d4acee666dfa46e81838d385a663b4c4730c852 (diff) | |
download | binaryen-0c2b5b417fdf897037d1e91e170601a67c80dab8.tar.gz binaryen-0c2b5b417fdf897037d1e91e170601a67c80dab8.tar.bz2 binaryen-0c2b5b417fdf897037d1e91e170601a67c80dab8.zip |
Re-enable ASan testing (without LSan which still fails due to #1351) (#2490)
-rw-r--r-- | .travis.yml | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml index 083935b65..92e814e46 100644 --- a/.travis.yml +++ b/.travis.yml @@ -47,7 +47,7 @@ jobs: sources: ['ubuntu-toolchain-r-test'] packages: ['cmake', 'g++-5', 'python3-pip'] before_install: - - export ASAN_OPTIONS="symbolize=1" + - export ASAN_OPTIONS="$ASAN_OPTIONS symbolize=1" install: - nvm install 12 - nvm use 12 @@ -80,9 +80,10 @@ jobs: COMPILER_FLAGS="-fsanitize=undefined -fno-sanitize-recover=all -fsanitize-blacklist=$(pwd)/ubsan.blacklist" # FIXME we currently must disable LSAN entirely, see #1351 - #- <<: *test-ubuntu - # env: | - # COMPILER_FLAGS="-fsanitize=address" + - <<: *test-ubuntu + env: | + COMPILER_FLAGS="-fsanitize=address" + ASAN_OPTIONS="detect_leaks=0" - <<: *test-ubuntu env: | |