From: Denis Vlasenko Date: Sat, 28 Mar 2009 19:31:34 +0000 (-0000) Subject: remove ((expr)) bash'ism X-Git-Tag: 1_14_0~169 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=e61f07f03661b8e75a54e50d8a2c948c0e215531;p=oweals%2Fbusybox.git remove ((expr)) bash'ism --- diff --git a/shell/hush_test/run-all b/shell/hush_test/run-all index b5db79f6c..d7602c890 100755 --- a/shell/hush_test/run-all +++ b/shell/hush_test/run-all @@ -49,7 +49,7 @@ do_test() { "$THIS_SH" "./$x" >"$name.xx" 2>&1 diff -u "$name.xx" "$name.right" >"../$1-$x.fail" && rm -f "$name.xx" "../$1-$x.fail" - } && echo "$1/$x: ok" || { echo "$1/$x: fail"; ((tret+=1)); } + } && echo "$1/$x: ok" || { echo "$1/$x: fail"; tret=1; } done exit ${tret} )