aboutsummaryrefslogtreecommitdiff
path: root/ci
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2019-11-20 14:10:57 -0500
committerMarcoFalke <falke.marco@gmail.com>2019-12-04 12:16:38 -0500
commitfa1bfc476c9208a4c412c8ca74d05f52bb47766f (patch)
tree922de7964e094ecf9c0511f31a748cb2fc61a9b0 /ci
parentfa69cef13e5aab8264339eb3d50a9e89d59efd87 (diff)
downloadbitcoin-fa1bfc476c9208a4c412c8ca74d05f52bb47766f.tar.xz
ci: ubsan report_error_type=1 and add suppressions
Diffstat (limited to 'ci')
-rwxr-xr-xci/test/04_install.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/test/04_install.sh b/ci/test/04_install.sh
index 9efdd30d87..b9eaae0b0d 100755
--- a/ci/test/04_install.sh
+++ b/ci/test/04_install.sh
@@ -36,7 +36,7 @@ mkdir -p "${CCACHE_DIR}"
export ASAN_OPTIONS="detect_stack_use_after_return=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 UBSAN_OPTIONS="suppressions=${BASE_ROOT_DIR}/test/sanitizer_suppressions/ubsan:print_stacktrace=1:halt_on_error=1"
+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|CCACHE_|WINEDEBUG|LC_ALL|BOOST_TEST_RANDOM|CONFIG_SHELL|(ASAN|LSAN|TSAN|UBSAN)_OPTIONS)' | tee /tmp/env
if [[ $HOST = *-mingw32 ]]; then
DOCKER_ADMIN="--cap-add SYS_ADMIN"