diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2023-04-06 14:52:19 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2023-04-12 12:00:10 -0400 |
commit | a3bed764555f76003bb03c023123846fdff76f1b (patch) | |
tree | 4a1f98a61ca08c82bfc839c727f8da9ea81c51f0 /tests/tests.sh | |
parent | a812c5c8c9aabf6e0fd934bd55ec553c6dbb60c2 (diff) | |
download | bfs-a3bed764555f76003bb03c023123846fdff76f1b.tar.xz |
build: Fix tsan
Diffstat (limited to 'tests/tests.sh')
-rwxr-xr-x | tests/tests.sh | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/tests/tests.sh b/tests/tests.sh index 98d332c..9265481 100755 --- a/tests/tests.sh +++ b/tests/tests.sh @@ -9,11 +9,12 @@ umask 022 export LC_ALL=C export TZ=UTC0 -export ASAN_OPTIONS="abort_on_error=1:log_to_syslog=0" -export LSAN_OPTIONS="abort_on_error=1:log_to_syslog=0" -export MSAN_OPTIONS="abort_on_error=1:log_to_syslog=0" -export TSAN_OPTIONS="abort_on_error=1:log_to_syslog=0" -export UBSAN_OPTIONS="abort_on_error=1:log_to_syslog=0" +SAN_OPTIONS="halt_on_error=1:log_to_syslog=0" +export ASAN_OPTIONS="$SAN_OPTIONS" +export LSAN_OPTIONS="$SAN_OPTIONS" +export MSAN_OPTIONS="$SAN_OPTIONS" +export TSAN_OPTIONS="$SAN_OPTIONS" +export UBSAN_OPTIONS="$SAN_OPTIONS" export LS_COLORS="" unset BFS_COLORS |