From: David van Moolenbroek Date: Fri, 20 Apr 2012 09:34:56 +0000 (+0200) Subject: run test fix, take two X-Git-Tag: v3.2.1~574 X-Git-Url: http://zhaoyanbai.com/repos/cppcheck.log?a=commitdiff_plain;h=1e78879f1ee6df0d4c98422a92f44a9502ad68bc;p=minix.git run test fix, take two --- diff --git a/test/run b/test/run index fda8f725b..db55bac35 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" $ARG || FAIL=1 + then su - bin -c "cd `pwd`; ./test$i $ARG" || FAIL=1 else ./test$i $ARG || FAIL=1 fi if [ $FAIL -eq 0 ]