aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorbfredl <bjorn.linse@gmail.com>2023-02-10 22:32:44 +0100
committerGitHub <noreply@github.com>2023-02-10 22:32:44 +0100
commit24aebbb3de83ef57c01a92ee6315eb8a6e15e402 (patch)
tree5a127ec3112d57a511c956c5502a5339c6bdc207 /.github
parentb8ad1bfe8bc23ed5ffbfe43df5fda3501f1d2802 (diff)
parent87d08095451d8d34030ddc62df093394f247740f (diff)
downloadrneovim-24aebbb3de83ef57c01a92ee6315eb8a6e15e402.tar.gz
rneovim-24aebbb3de83ef57c01a92ee6315eb8a6e15e402.tar.bz2
rneovim-24aebbb3de83ef57c01a92ee6315eb8a6e15e402.zip
Merge pull request #21887 from bfredl/asanterror
build(ci): let ASAN print tracebacks for more errors (SIGABORT, SIGILL)
Diffstat (limited to '.github')
-rwxr-xr-x.github/workflows/env.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/env.sh b/.github/workflows/env.sh
index 7be26e1a72..b4cdb3a8d9 100755
--- a/.github/workflows/env.sh
+++ b/.github/workflows/env.sh
@@ -23,7 +23,7 @@ TSAN_OPTIONS=
case "$FLAVOR" in
asan)
CLANG_SANITIZER=ASAN_UBSAN
- ASAN_OPTIONS="detect_leaks=1:check_initialization_order=1:log_path=$LOG_DIR/asan:intercept_tls_get_addr=0"
+ ASAN_OPTIONS="detect_leaks=1:check_initialization_order=1:handle_abort=1:handle_sigill=1:log_path=$LOG_DIR/asan:intercept_tls_get_addr=0"
UBSAN_OPTIONS="print_stacktrace=1 log_path=$LOG_DIR/ubsan"
;;
tsan)