From: René Scharfe Date: Thu, 1 Dec 2022 21:48:24 +0000 (+0100) Subject: t4205: don't exit test script on failure X-Git-Tag: v2.40.0-rc0~151^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=77e04b2ed43c93c55ca4645be385c926b9102f6a;p=thirdparty%2Fgit.git t4205: don't exit test script on failure Only abort the individual check instead of exiting the whole test script if git show fails. Noticed with GIT_TEST_PASSING_SANITIZE_LEAK=check. Helped-by: Eric Sunshine Signed-off-by: René Scharfe Signed-off-by: Junio C Hamano --- diff --git a/t/t4205-log-pretty-formats.sh b/t/t4205-log-pretty-formats.sh index e448ef2928..0404491d6e 100755 --- a/t/t4205-log-pretty-formats.sh +++ b/t/t4205-log-pretty-formats.sh @@ -156,7 +156,7 @@ test_expect_success 'NUL termination with --reflog --pretty=oneline' ' for r in $revs do git show -s --pretty=oneline "$r" >raw && - cat raw | lf_to_nul || exit 1 + cat raw | lf_to_nul || return 1 done >expect && # the trailing NUL is already produced so we do not need to # output another one