Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2018-04-11 07:09:54 +0300
committerJunio C Hamano <gitster@pobox.com>2018-04-11 07:09:54 +0300
commit5ff42d42da9c2c26737988d19b347c99489c8faa (patch)
tree3067785e87b3602d464a1a2cf948fb273f91e813
parent181963070778a9230c0f86c86844ce8fee84cbaa (diff)
parent9eb2308019b92625c659f759a6a27b5edeb1d815 (diff)
Merge branch 'jc/test-must-be-empty'
Test helper update. * jc/test-must-be-empty: test_must_be_empty: simplify file existence check
-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 b895366fee..7d620bf2a9 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"