test: 100-test-file, 100-bracket-file.

This commit is contained in:
Jan Nieuwenhuizen 2018-11-30 16:36:00 +01:00
parent 8f12c6a562
commit 380562c0b3
3 changed files with 12 additions and 0 deletions

View File

@ -109,6 +109,9 @@ tests='
100-cd
100-cd-foo
100-test-file
100-bracket-file
100-sed
100-sed-once
100-sed-global
@ -123,6 +126,7 @@ tests='
100-tar-Z
100-tar-Z-old
100-tar-Z-pipe
'
broken="

4
test/100-bracket-file.sh Normal file
View File

@ -0,0 +1,4 @@
if [ -f foo-bar ]; then
exit 1
fi

4
test/100-test-file.sh Normal file
View File

@ -0,0 +1,4 @@
if test -f foo-bar; then
exit 1
fi