From eed883b0a5bdf8531943ad8afe182fa04e956a3b Mon Sep 17 00:00:00 2001 From: Denis Blank Date: Mon, 29 Jan 2018 00:36:08 +0100 Subject: [PATCH] Revert "Skip asan testing when using await" This reverts commit 66b662e2a4e949e015c514ce15864f68c4fd98c3. --- tools/travis-ci.sh | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/tools/travis-ci.sh b/tools/travis-ci.sh index 8c80ed2..5cbefb8 100644 --- a/tools/travis-ci.sh +++ b/tools/travis-ci.sh @@ -51,17 +51,13 @@ if [[ $CXX == *"clang"* ]]; then ASAN_OPTIONS=abort_on_error=1 # Build the test suite with various sanitizers: - if [ $WITH_AWAIT != "ON" ]; then - # - ASan (LSan): - echo "Building with address sanitizer..." - CMAKE_CXX_FLAGS="-fsanitize=address -fno-omit-frame-pointer" - renew_build + # - ASan (LSan): + echo "Building with address sanitizer..." + CMAKE_CXX_FLAGS="-fsanitize=address -fno-omit-frame-pointer" + renew_build - ninja -j2 - ctest --verbose - else - echo "Skipping ASan testing because we build with coroutine support..."; - fi + ninja -j2 + ctest --verbose # - UBSan: echo "Building with undefined behaviour sanitizer..."