Lines Matching +full:tsan +full:- +full:build
1 #!/bin/bash -e
3 # This test will use TSan as part of a build and a make check.
10 # Originally based on test-quick from Fam Zheng <famz@redhat.com>
14 # the top-level directory.
21 tsan_log_dir="/tmp/qemu-test/build/tsan"
22 mkdir -p $tsan_log_dir > /dev/null || true
23 EXTRA_CONFIGURE_OPTS="${EXTRA_CONFIGURE_OPTS} --enable-tsan \
24 --cc=clang --cxx=clang++ \
25 --disable-werror --extra-cflags=-O0"
27 # TSan crashes immediately with deadlock detector enabled.
30 # Note, to get TSan to fail on warning, use exitcode=66 below.
31 tsan_opts="suppressions=/tmp/qemu-test/src/tests/tsan/suppressions.tsan\
40 TARGET_LIST=${TARGET_LIST:-$DEF_TARGET_LIST} \