X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/320989b05d7242149be03cd021d11e7201e4f937..232ce2b2c8ce48020b4d5d26969c5dca9337a883:/runtests.sh diff --git a/runtests.sh b/runtests.sh index f21371be..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"