From 438cb85eceaecc27c8913e2aa769bd76c5a74666 Mon Sep 17 00:00:00 2001 From: Kittywhiskers Van Gogh <63189531+kwvg@users.noreply.github.com> Date: Tue, 27 Aug 2024 20:05:31 +0000 Subject: [PATCH] ci: set UBSan to halt on error and provide more information --- ci/dash/matrix.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/dash/matrix.sh b/ci/dash/matrix.sh index 51a8c6e2e3..70d0a57abe 100755 --- a/ci/dash/matrix.sh +++ b/ci/dash/matrix.sh @@ -14,7 +14,7 @@ source ./ci/test/00_setup_env.sh export ASAN_OPTIONS="" export LSAN_OPTIONS="suppressions=${BASE_ROOT_DIR}/test/sanitizer_suppressions/lsan" export TSAN_OPTIONS="suppressions=${BASE_ROOT_DIR}/test/sanitizer_suppressions/tsan:halt_on_error=1" -export UBSAN_OPTIONS="suppressions=${BASE_ROOT_DIR}/test/sanitizer_suppressions/ubsan" +export UBSAN_OPTIONS="suppressions=${BASE_ROOT_DIR}/test/sanitizer_suppressions/ubsan:print_stacktrace=1:halt_on_error=1:report_error_type=1" if [ "$BUILD_TARGET" = "arm-linux" ]; then source ./ci/test/00_setup_env_arm.sh