From: Rohit Ashiwal Date: Mon, 4 Mar 2019 12:07:59 +0000 (+0530) Subject: test functions: add function `test_file_not_empty` X-Git-Tag: v2.22.0-rc0~128^2~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=21d5ad911032efe99ad4c3c72a8c0b839e29d92c;p=thirdparty%2Fgit.git test functions: add function `test_file_not_empty` Add a helper function to ensure that a given path is a non-empty file, and give an error message when it is not. Signed-off-by: Rohit Ashiwal Signed-off-by: Junio C Hamano --- diff --git a/t/test-lib-functions.sh b/t/test-lib-functions.sh index 80402a428f..681c41ba32 100644 --- a/t/test-lib-functions.sh +++ b/t/test-lib-functions.sh @@ -593,6 +593,15 @@ test_dir_is_empty () { fi } +# Check if the file exists and has a size greater than zero +test_file_not_empty () { + if ! test -s "$1" + then + echo "'$1' is not a non-empty file." + false + fi +} + test_path_is_missing () { if test -e "$1" then