Skip to content

Commit 00c6488

Browse files
Move halt on error to fix configure
1 parent 1e92881 commit 00c6488

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/reusable-san.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
|| ''
6262
}}.txt handle_segv=0" >> "$GITHUB_ENV"
6363
else
64-
echo "UBSAN_OPTIONS=${SAN_LOG_OPTION} halt_on_error=1 suppressions=${GITHUB_WORKSPACE}/Tools/ubsan/suppressions.txt" >> "$GITHUB_ENV"
64+
echo "UBSAN_OPTIONS=${SAN_LOG_OPTION} suppressions=${GITHUB_WORKSPACE}/Tools/ubsan/suppressions.txt" >> "$GITHUB_ENV"
6565
fi
6666
echo "CC=clang" >> "$GITHUB_ENV"
6767
echo "CXX=clang++" >> "$GITHUB_ENV"
@@ -85,6 +85,7 @@ jobs:
8585
run: make pythoninfo
8686
- name: Tests
8787
run: >-
88+
UBSAN_OPTIONS="${UBSAN_OPTIONS} halt_on_error=1"
8889
./python -m test
8990
${{ inputs.sanitizer == 'TSan' && '--tsan' || '' }}
9091
${{ inputs.sanitizer == 'UBSan' && '-x test_capi' || '' }}

0 commit comments

Comments
 (0)