diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2009-03-28 19:31:34 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2009-03-28 19:31:34 +0000 |
commit | e61f07f03661b8e75a54e50d8a2c948c0e215531 (patch) | |
tree | 2b451f39d5322a85ca47fb7ffc9d134df419662f /shell/hush_test | |
parent | 701ac1864b9c562a6b8a84bad0261a03f494f114 (diff) | |
download | busybox-e61f07f03661b8e75a54e50d8a2c948c0e215531.tar.gz |
remove ((expr)) bash'ism
Diffstat (limited to 'shell/hush_test')
-rwxr-xr-x | shell/hush_test/run-all | 2 |
1 files changed, 1 insertions, 1 deletions
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} ) |