From 2dea01ca11b084641d912de8632c42df0d2734cd Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Fri, 2 May 2008 09:39:09 +0000 Subject: testing.sh: bashisms are eradicated. By Cristian Ionescu-Idbohrn --- testsuite/testing.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'testsuite/testing.sh') diff --git a/testsuite/testing.sh b/testsuite/testing.sh index 94e90d77e..e9338dbc1 100755 --- a/testsuite/testing.sh +++ b/testsuite/testing.sh @@ -79,7 +79,7 @@ testing() cmp expected actual >/dev/null 2>/dev/null if [ $? -ne 0 ] then - FAILCOUNT=$[$FAILCOUNT+1] + FAILCOUNT=$(($FAILCOUNT + 1)) echo "FAIL: $NAME" [ -n "$VERBOSE" ] && diff -u expected actual else @@ -107,7 +107,8 @@ mkchroot() shift for i in "$@" do - [ "${i:0:1}" == "/" ] || i=$(which $i) + #bashism: [ "${i:0:1}" == "/" ] || i=$(which $i) + i=$(which $i) # no-op for /bin/prog [ -f "$dest/$i" ] && continue if [ -e "$i" ] then -- cgit v1.2.3