Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-06-14 21:13:20 +0400
committerDenis Vlasenko <vda.linux@googlemail.com>2008-06-14 21:13:20 +0400
commitf8d01d3f66dc50e54dae3c1d0e9b249f71f1dd43 (patch)
tree3389ceea2b3b8db090cad74507acfa1c061c6a75 /shell/hush_test/hush-misc
parentdd316dd283704b9adb588c3fb7cdec6ba5fbceb8 (diff)
hush: fix a bug where we were requiring semicolon here: (cmd;)
also fix a bug where after error prompt is not shown. function old new delta parse_stream 1612 1638 +26 parse_and_run_stream 361 375 +14 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 2/0 up/down: 40/0) Total: 40 bytes
Diffstat (limited to 'shell/hush_test/hush-misc')
-rwxr-xr-xshell/hush_test/hush-misc/colon.tests3
-rw-r--r--shell/hush_test/hush-misc/while_in_subshell.right1
-rwxr-xr-xshell/hush_test/hush-misc/while_in_subshell.tests2
3 files changed, 4 insertions, 2 deletions
diff --git a/shell/hush_test/hush-misc/colon.tests b/shell/hush_test/hush-misc/colon.tests
index ea3b4d5f3..cb8ab5306 100755
--- a/shell/hush_test/hush-misc/colon.tests
+++ b/shell/hush_test/hush-misc/colon.tests
@@ -1,6 +1,5 @@
false
:
echo $?
-# Extra ; after done is due to a bug
-(while :; do exit; done;)
+(while :; do exit; done)
echo OK: $?
diff --git a/shell/hush_test/hush-misc/while_in_subshell.right b/shell/hush_test/hush-misc/while_in_subshell.right
new file mode 100644
index 000000000..290d39b7e
--- /dev/null
+++ b/shell/hush_test/hush-misc/while_in_subshell.right
@@ -0,0 +1 @@
+OK: 0
diff --git a/shell/hush_test/hush-misc/while_in_subshell.tests b/shell/hush_test/hush-misc/while_in_subshell.tests
new file mode 100755
index 000000000..def8e092b
--- /dev/null
+++ b/shell/hush_test/hush-misc/while_in_subshell.tests
@@ -0,0 +1,2 @@
+(while true; do exit; done)
+echo OK: $?