Merge branch 'jc/test-must-be-empty'
Test helper update. * jc/test-must-be-empty: test_must_be_empty: simplify file existence check
This commit is contained in:
commit
5ff42d42da
@ -782,11 +782,8 @@ verbose () {
|
|||||||
# otherwise.
|
# otherwise.
|
||||||
|
|
||||||
test_must_be_empty () {
|
test_must_be_empty () {
|
||||||
if ! test -f "$1"
|
test_path_is_file "$1" &&
|
||||||
then
|
if test -s "$1"
|
||||||
echo "'$1' is missing"
|
|
||||||
return 1
|
|
||||||
elif test -s "$1"
|
|
||||||
then
|
then
|
||||||
echo "'$1' is not empty, it contains:"
|
echo "'$1' is not empty, it contains:"
|
||||||
cat "$1"
|
cat "$1"
|
||||||
|
Loading…
Reference in New Issue
Block a user