Commit 882582b3 authored by Martin Pool's avatar Martin Pool

Run all scripts in the testsuite/ directory, not just named ones. I'd

like to make this script not rsync-specific if possible.
parent ebaa0489
......@@ -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"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment