From 5352f483016949073556a1f9ac488051fe96c308 Mon Sep 17 00:00:00 2001 From: iphydf Date: Sun, 26 Aug 2018 19:08:34 +0000 Subject: Make the tsan build fail instead of swallowing its errors. We'll make it non-required, but we want to know about these failures so we are incentivised to fix them. --- .circleci/cmake-asan | 4 ++++ .circleci/cmake-tsan | 5 +++-- 2 files changed, 7 insertions(+), 2 deletions(-) (limited to '.circleci') diff --git a/.circleci/cmake-asan b/.circleci/cmake-asan index 49220cbe..39ec81b8 100755 --- a/.circleci/cmake-asan +++ b/.circleci/cmake-asan @@ -24,5 +24,9 @@ cd _build ninja install -j$(nproc) +export ASAN_OPTIONS="detect_invalid_pointer_pairs=1" +export ASAN_OPTIONS="$ASAN_OPTIONS,detect_stack_use_after_return=1" +export ASAN_OPTIONS="$ASAN_OPTIONS,strict_init_order=1" +export ASAN_OPTIONS="$ASAN_OPTIONS,strict_string_checks=1" ctest -j50 --output-on-failure || ctest -j50 --output-on-failure --rerun-failed diff --git a/.circleci/cmake-tsan b/.circleci/cmake-tsan index 65ccc437..5d4453ff 100755 --- a/.circleci/cmake-tsan +++ b/.circleci/cmake-tsan @@ -24,6 +24,7 @@ cd _build ninja install -j$(nproc) +export TSAN_OPTIONS="halt_on_error=1" +export TSAN_OPTIONS="$TSAN_OPTIONS,second_deadlock_stack=1" ctest -j50 --output-on-failure || -ctest -j50 --output-on-failure --rerun-failed || -true # TODO(iphydf): remove this line once the data races are fixed. +ctest -j50 --output-on-failure --rerun-failed -- cgit v1.2.3