From: SZEDER Gábor Date: Mon, 26 Mar 2018 13:11:24 +0000 (+0200) Subject: test_must_be_empty: simplify file existence check X-Git-Tag: v2.18.0-rc0~145^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9eb2308019b92625c659f759a6a27b5edeb1d815;p=thirdparty%2Fgit.git test_must_be_empty: simplify file existence check Commit 11395a3b4b (test_must_be_empty: make sure the file exists, not just empty, 2018-02-27) basically duplicated the 'test_path_is_file' helper function in 'test_must_be_empty'. Just call 'test_path_is_file' to avoid this code duplication. Signed-off-by: SZEDER Gábor Signed-off-by: Junio C Hamano --- diff --git a/t/test-lib-functions.sh b/t/test-lib-functions.sh index d2eaf5ab67..36ad8accdd 100644 --- a/t/test-lib-functions.sh +++ b/t/test-lib-functions.sh @@ -718,11 +718,8 @@ verbose () { # otherwise. test_must_be_empty () { - if ! test -f "$1" - then - echo "'$1' is missing" - return 1 - elif test -s "$1" + test_path_is_file "$1" && + if test -s "$1" then echo "'$1' is not empty, it contains:" cat "$1"