diff options
| author | MarcoFalke <[email protected]> | 2020-05-30 07:56:31 -0400 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2020-05-30 08:32:58 -0400 |
| commit | fa0d5ee1126a8cff9f30f863eb8f5c78bf57e168 (patch) | |
| tree | d110c4a1a62a4d678b9f3d843b64032cfa70dda8 | |
| parent | ci: Deduplicate DOCKER_EXEC (diff) | |
| download | discoin-fa0d5ee1126a8cff9f30f863eb8f5c78bf57e168.tar.xz discoin-fa0d5ee1126a8cff9f30f863eb8f5c78bf57e168.zip | |
ci: Set halt_on_error=1 for tsan
| -rwxr-xr-x | ci/test/04_install.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/test/04_install.sh b/ci/test/04_install.sh index 8be0d5646..165983d90 100755 --- a/ci/test/04_install.sh +++ b/ci/test/04_install.sh @@ -24,7 +24,7 @@ mkdir -p "${PREVIOUS_RELEASES_DIR}" export ASAN_OPTIONS="detect_stack_use_after_return=1:check_initialization_order=1:strict_init_order=1" export LSAN_OPTIONS="suppressions=${BASE_ROOT_DIR}/test/sanitizer_suppressions/lsan" -export TSAN_OPTIONS="suppressions=${BASE_ROOT_DIR}/test/sanitizer_suppressions/tsan:log_path=${BASE_SCRATCH_DIR}/sanitizer-output/tsan" +export TSAN_OPTIONS="suppressions=${BASE_ROOT_DIR}/test/sanitizer_suppressions/tsan:halt_on_error=1:log_path=${BASE_SCRATCH_DIR}/sanitizer-output/tsan" export UBSAN_OPTIONS="suppressions=${BASE_ROOT_DIR}/test/sanitizer_suppressions/ubsan:print_stacktrace=1:halt_on_error=1:report_error_type=1" env | grep -E '^(BITCOIN_CONFIG|BASE_|QEMU_|CCACHE_|LC_ALL|BOOST_TEST_RANDOM|DEBIAN_FRONTEND|CONFIG_SHELL|(ASAN|LSAN|TSAN|UBSAN)_OPTIONS|PREVIOUS_RELEASES_DIR)' | tee /tmp/env if [[ $HOST = *-mingw32 ]]; then |