Revert "Skip asan testing when using await"

This reverts commit 66b662e2a4e949e015c514ce15864f68c4fd98c3.
This commit is contained in:
Denis Blank 2018-01-29 00:36:08 +01:00
parent 9c4b0a3a17
commit eed883b0a5

View File

@ -51,17 +51,13 @@ if [[ $CXX == *"clang"* ]]; then
ASAN_OPTIONS=abort_on_error=1 ASAN_OPTIONS=abort_on_error=1
# Build the test suite with various sanitizers: # Build the test suite with various sanitizers:
if [ $WITH_AWAIT != "ON" ]; then # - ASan (LSan):
# - ASan (LSan): echo "Building with address sanitizer..."
echo "Building with address sanitizer..." CMAKE_CXX_FLAGS="-fsanitize=address -fno-omit-frame-pointer"
CMAKE_CXX_FLAGS="-fsanitize=address -fno-omit-frame-pointer" renew_build
renew_build
ninja -j2 ninja -j2
ctest --verbose ctest --verbose
else
echo "Skipping ASan testing because we build with coroutine support...";
fi
# - UBSan: # - UBSan:
echo "Building with undefined behaviour sanitizer..." echo "Building with undefined behaviour sanitizer..."