aboutsummaryrefslogtreecommitdiff
path: root/shell/hush_test
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2013-04-07 18:16:58 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2013-04-07 18:16:58 +0200
commit3beab83e4f7f4213c185737e95dc4895f0059dd6 (patch)
tree89293330f61c17e734d5367954409a37261e95ca /shell/hush_test
parentd35cbad0efaa57bf7c5280e62825966f7757906a (diff)
downloadbusybox-3beab83e4f7f4213c185737e95dc4895f0059dd6.tar.gz
hush: fix for "while false && true; do echo BUG; break; done". closes 6170
function old new delta run_list 959 941 -18 Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell/hush_test')
-rw-r--r--shell/hush_test/hush-misc/while4.right1
-rwxr-xr-xshell/hush_test/hush-misc/while4.tests6
2 files changed, 7 insertions, 0 deletions
diff --git a/shell/hush_test/hush-misc/while4.right b/shell/hush_test/hush-misc/while4.right
new file mode 100644
index 000000000..7b24a35ff
--- /dev/null
+++ b/shell/hush_test/hush-misc/while4.right
@@ -0,0 +1 @@
+Ok:0
diff --git a/shell/hush_test/hush-misc/while4.tests b/shell/hush_test/hush-misc/while4.tests
new file mode 100755
index 000000000..ba80e603a
--- /dev/null
+++ b/shell/hush_test/hush-misc/while4.tests
@@ -0,0 +1,6 @@
+false
+while false && echo Not reached; do
+ echo BUG
+ break
+done
+echo Ok:$?