X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/42e66aa24cacea99d62b203d1c1a4bad234a1f1a..8fef0245283dadaa2d6b86096b13c78bfcae0b34:/runtests.sh diff --git a/runtests.sh b/runtests.sh index 712bde84..5c672dd2 100755 --- a/runtests.sh +++ b/runtests.sh @@ -144,15 +144,9 @@ suitedir="$srcdir/testsuite" export scratchdir suitedir -for testbase in rsync-hello hands ssh-basic +for testscript in $suitedir/*.test do - testscript="$suitedir/$testbase.test" - if test \! -f "$testscript" - then - echo "$testscript does not exist" >&2 - missing=`expr $missing + 1` - continue - fi + testbase=`echo $testscript | sed 's!.*/!!'` echo "----- $testbase starting" @@ -169,7 +163,10 @@ do *) echo "----- $testbase failed!" failed=`expr $failed + 1` - [ "$nopersist" = "yes" ] && exit 1 + if [ "x$nopersist" = "xyes" ] + then + exit 1 + fi esac fi done