From fec2ed21871c73d5212f5c8843d250eb7d5a649c Mon Sep 17 00:00:00 2001 From: Jonathan Nieder Date: Mon, 16 Jul 2018 23:54:16 -0700 Subject: gc: exit with status 128 on failure A value of -1 returned from cmd_gc gets propagated to exit(), resulting in an exit status of 255. Use die instead for a clearer error message and a controlled exit. Signed-off-by: Jonathan Nieder Signed-off-by: Junio C Hamano --- t/t6500-gc.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 't/t6500-gc.sh') diff --git a/t/t6500-gc.sh b/t/t6500-gc.sh index 818435f04e..c474a94a9f 100755 --- a/t/t6500-gc.sh +++ b/t/t6500-gc.sh @@ -117,7 +117,7 @@ test_expect_success 'background auto gc does not run if gc.log is present and re test_config gc.autodetach true && echo fleem >.git/gc.log && test_must_fail git gc --auto 2>err && - test_i18ngrep "^error:" err && + test_i18ngrep "^fatal:" err && test_config gc.logexpiry 5.days && test-tool chmtime =-345600 .git/gc.log && test_must_fail git gc --auto && -- cgit v1.2.3