Skip to content

Commit bf1ce90

Browse files
peffgitster
authored andcommitted
test-lib: turn on ASan abort_on_error by default
By default, ASan will exit with code 1 when it sees an error. This means we'll notice a problem when we expected git to succeed, but not in a test_must_fail block. Let's ask it to actually raise SIGABRT instead. That will give us a signal death that test_must_fail will notice. As a bonus, it may also leave a coredump, which can be handy for digging into a failure. Signed-off-by: Jeff King <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent d0cc579 commit bf1ce90

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

t/test-lib.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ GIT_BUILD_DIR="$TEST_DIRECTORY"/..
4141
# the noise level. This needs to happen at the start of the script,
4242
# before we even do our "did we build git yet" check (since we don't
4343
# want that one to complain to stderr).
44-
: ${ASAN_OPTIONS=detect_leaks=0}
44+
: ${ASAN_OPTIONS=detect_leaks=0:abort_on_error=1}
4545
export ASAN_OPTIONS
4646

4747
################################################################

0 commit comments

Comments
 (0)