diff options
Diffstat (limited to 't/parallel-tests.sh')
-rwxr-xr-x | t/parallel-tests.sh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/t/parallel-tests.sh b/t/parallel-tests.sh index f6ebb85a2..a1062d3fc 100755 --- a/t/parallel-tests.sh +++ b/t/parallel-tests.sh @@ -77,10 +77,10 @@ test -f bar.log test -f foo.log $MAKE clean -test ! -f baz.log -test ! -f bar.log -test ! -f foo.log -test ! -f test-suite.log +test ! -e baz.log +test ! -e bar.log +test ! -e foo.log +test ! -e test-suite.log # Check dependencies: baz.test needs to run before bar.test, # but foo.test is not needed. @@ -94,7 +94,7 @@ grep '^ERROR: bar\.test$' stdout test -f baz.log test -f bar.log -test ! -f foo.log +test ! -e foo.log test -f test-suite.log # Upon a lazy rerun, foo.test should be run, but the others shouldn't. |