From: Ben Gras Date: Wed, 18 Apr 2012 13:59:37 +0000 (+0200) Subject: run test fix X-Git-Tag: v3.2.1~579 X-Git-Url: http://zhaoyanbai.com/repos/man.dnssec-coverage.html?a=commitdiff_plain;h=ed21b542039aba0f99195a763520bf4100e4ef7c;p=minix.git run test fix --- diff --git a/test/run b/test/run index 7b0cf3689..fda8f725b 100755 --- a/test/run +++ b/test/run @@ -47,7 +47,7 @@ do testid="`echo $i | sed 's/\..*//'`" ARG=`eval echo "\\${ARGS_$testid}"` if [ "$USER" = root ] - then su - bin -c "cd `pwd`; ./test$i" || FAIL=1 + then su - bin -c "cd `pwd`; ./test$i" $ARG || FAIL=1 else ./test$i $ARG || FAIL=1 fi if [ $FAIL -eq 0 ]