Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
Merge branch 'jc/test-must-be-empty' into next
author
Junio C Hamano
<gitster@pobox.com>
Fri, 30 Mar 2018 01:27:26 +0000
(18:27 -0700)
committer
Junio C Hamano
<gitster@pobox.com>
Fri, 30 Mar 2018 01:27:26 +0000
(18:27 -0700)
Test helper update.
* jc/test-must-be-empty:
test_must_be_empty: simplify file existence check
t/test-lib-functions.sh
patch
|
blob
|
history
raw
(from parent 1:
0251068
)
diff --git
a/t/test-lib-functions.sh
b/t/test-lib-functions.sh
index b895366feef6027ac00bf47271b2530e8b7e7162..7d620bf2a9a26c325de035c8d9d85323d5088357 100644
(file)
--- 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"