diff options
Diffstat (limited to 't/test-missing.sh')
-rwxr-xr-x | t/test-missing.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/t/test-missing.sh b/t/test-missing.sh index 441a83894..7cf1d52af 100755 --- a/t/test-missing.sh +++ b/t/test-missing.sh @@ -42,19 +42,19 @@ cat output test -f ok.log grep '^PASS: ok\.test' output $FGREP 'zardoz.log' output -test ! -f test-suite.log +test ! -e test-suite.log TESTS='zardoz2.test' $MAKE -e check >output 2>&1 \ && { cat output; exit 1; } cat output $FGREP 'zardoz2.log' output -test ! -f test-suite.log +test ! -e test-suite.log TEST_LOGS='zardoz3.log' $MAKE -e check >output 2>&1 \ && { cat output; exit 1; } cat output $FGREP 'zardoz3.log' output -test ! -f test-suite.log +test ! -e test-suite.log # The errors should persist even after 'test-suite.log' # has been created. @@ -66,6 +66,6 @@ rm -f zardoz.test $MAKE check >output 2>&1 && { cat output; exit 1; } cat output $FGREP 'zardoz.log' output -test ! -f test-suite.log +test ! -e test-suite.log : |