aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xshell/hush_test/run-all2
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()
49 { 49 {
50 "$THIS_SH" "./$x" >"$name.xx" 2>&1 50 "$THIS_SH" "./$x" >"$name.xx" 2>&1
51 diff -u "$name.xx" "$name.right" >"../$1-$x.fail" && rm -f "$name.xx" "../$1-$x.fail" 51 diff -u "$name.xx" "$name.right" >"../$1-$x.fail" && rm -f "$name.xx" "../$1-$x.fail"
52 } && echo "$1/$x: ok" || { echo "$1/$x: fail"; ((tret+=1)); } 52 } && echo "$1/$x: ok" || { echo "$1/$x: fail"; tret=1; }
53 done 53 done
54 exit ${tret} 54 exit ${tret}
55 ) 55 )