Merge branch 'rs/t4205-do-not-exit-in-test-script' into maint-2.39

Test fix.

* rs/t4205-do-not-exit-in-test-script:
  t4205: don't exit test script on failure
This commit is contained in:
Junio C Hamano 2023-02-14 14:15:53 -08:00
commit db2a91ba36

View File

@ -156,7 +156,7 @@ test_expect_success 'NUL termination with --reflog --pretty=oneline' '
for r in $revs for r in $revs
do do
git show -s --pretty=oneline "$r" >raw && git show -s --pretty=oneline "$r" >raw &&
cat raw | lf_to_nul || exit 1 cat raw | lf_to_nul || return 1
done >expect && done >expect &&
# the trailing NUL is already produced so we do not need to # the trailing NUL is already produced so we do not need to
# output another one # output another one