summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2018-04-11 04:09:54 (GMT)
committerJunio C Hamano <gitster@pobox.com>2018-04-11 04:09:54 (GMT)
commit5ff42d42da9c2c26737988d19b347c99489c8faa (patch)
tree3067785e87b3602d464a1a2cf948fb273f91e813 /t
parent181963070778a9230c0f86c86844ce8fee84cbaa (diff)
parent9eb2308019b92625c659f759a6a27b5edeb1d815 (diff)
downloadgit-5ff42d42da9c2c26737988d19b347c99489c8faa.zip
git-5ff42d42da9c2c26737988d19b347c99489c8faa.tar.gz
git-5ff42d42da9c2c26737988d19b347c99489c8faa.tar.bz2
Merge branch 'jc/test-must-be-empty'
Test helper update. * jc/test-must-be-empty: test_must_be_empty: simplify file existence check
Diffstat (limited to 't')
-rw-r--r--t/test-lib-functions.sh7
1 files changed, 2 insertions, 5 deletions
diff --git a/t/test-lib-functions.sh b/t/test-lib-functions.sh
index b895366..7d620bf 100644
--- a/t/test-lib-functions.sh
+++ b/t/test-lib-functions.sh
@@ -782,11 +782,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"