X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/320989b05d7242149be03cd021d11e7201e4f937..4a7cb3e8a82c5b641ef4344a41af33847922f4c2:/runtests.sh diff --git a/runtests.sh b/runtests.sh index f21371be..77a2fa97 100755 --- a/runtests.sh +++ b/runtests.sh @@ -92,6 +92,9 @@ # they're in POSIX 1003.2, and since the build farm relies on them # they're probably working on most machines we really care about. +# You cannot use "function foo {" syntax, but must instead say "foo() +# {", or it breaks on FreeBSD. + set -e @@ -144,15 +147,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"