From b214eda4f077515f328802cd8f6b0b48aaff661c Mon Sep 17 00:00:00 2001 From: Martin Pool Date: Fri, 14 Dec 2001 01:52:43 +0000 Subject: [PATCH] Clean scratch directory between each test run. --- runtests.sh | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) 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 -- 2.34.1