aboutsummaryrefslogtreecommitdiff
path: root/shell/hush_test/run-all
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2009-04-06 18:08:35 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2009-04-06 18:08:35 +0000
commitcd418a26700629ad3f240ef6fd2e351ec0c2f87e (patch)
tree5964e28502c10867fdb76037b9879950c300ee3b /shell/hush_test/run-all
parent8f8d013afc3ec24056f2180ec38e469615632094 (diff)
downloadbusybox-cd418a26700629ad3f240ef6fd2e351ec0c2f87e.tar.gz
hush: fix a bunch of obscure while/until/continue bugs
function old new delta run_list 1159 1214 +55 done_pipe 106 123 +17 done_command 86 98 +12 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 3/0 up/down: 84/0) Total: 84 bytes
Diffstat (limited to 'shell/hush_test/run-all')
-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 3fe3ba51d..c7989a172 100755
--- a/shell/hush_test/run-all
+++ b/shell/hush_test/run-all
@@ -46,7 +46,7 @@ do_test()
test -x "$x" || continue
name="${x%%.tests}"
test -f "$name.right" || continue
-# echo Running test: "$name.right"
+# echo Running test: "$x"
{
"$THIS_SH" "./$x" >"$name.xx" 2>&1
diff -u "$name.xx" "$name.right" >"../$1-$x.fail" && rm -f "$name.xx" "../$1-$x.fail"