X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/0771727d41929db4e7e592f85a9691ca473e6251..b214eda4f077515f328802cd8f6b0b48aaff661c:/runtests.sh diff --git a/runtests.sh b/runtests.sh index 8c3222f7..afa66f44 100755 --- a/runtests.sh +++ b/runtests.sh @@ -160,16 +160,18 @@ missing=0 passed=0 failed=0 -scratchdir=./testtmp -[ -d "$scratchdir" ] && rm -r "$scratchdir" -mkdir "$scratchdir" -scratchdir=`cd $scratchdir && pwd` +scratchdir="`cd ./testtmp && pwd`" echo " scratchdir=$scratchdir" suitedir="$srcdir/testsuite" export scratchdir suitedir +clean_scratch() { + [ -d "$scratchdir" ] && rm -rf "$scratchdir" + mkdir "$scratchdir" +} + if [ "x$whichtests" = x ] then whichtests="*.test" @@ -180,6 +182,7 @@ do testbase=`echo $testscript | sed 's!.*/!!'` echo "----- $testbase starting" + clean_scratch if sh $RUNSHFLAGS "$testscript" then