diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-05-11 12:56:43 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-05-11 12:56:43 +0000 |
commit | 3e9aaae5dc384ae070c49507a92b1375397954cd (patch) | |
tree | 048661e5d8448c8cb39a4453fe36f4e6c8746384 /shell/hush_test/hush-vars | |
parent | e0a336747c2061d0d555c4e15287b513831d2947 (diff) | |
download | busybox-3e9aaae5dc384ae070c49507a92b1375397954cd.tar.gz |
hush: fix bug in interactive shell introduced yesterday
hush: fix `process subst` (2 bugs)
NB: will delete and re-add hush_test in order to change file modes
Diffstat (limited to 'shell/hush_test/hush-vars')
-rw-r--r-- | shell/hush_test/hush-vars/var.right | 4 | ||||
-rw-r--r-- | shell/hush_test/hush-vars/var.tests | 10 |
2 files changed, 0 insertions, 14 deletions
diff --git a/shell/hush_test/hush-vars/var.right b/shell/hush_test/hush-vars/var.right deleted file mode 100644 index c13b98e38..000000000 --- a/shell/hush_test/hush-vars/var.right +++ /dev/null @@ -1,4 +0,0 @@ -http://busybox.net -http://busybox.net_abc -1 -0 diff --git a/shell/hush_test/hush-vars/var.tests b/shell/hush_test/hush-vars/var.tests deleted file mode 100644 index b0637ea6b..000000000 --- a/shell/hush_test/hush-vars/var.tests +++ /dev/null @@ -1,10 +0,0 @@ -URL=http://busybox.net - -echo $URL -echo ${URL}_abc - -true -false; echo $? -true -# BUG: prints 0, must be 1 -{ false; echo $?; } |