aboutsummaryrefslogtreecommitdiff
path: root/shell/hush_test/hush-vars/var.tests
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-05-11 12:56:43 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-05-11 12:56:43 +0000
commit3e9aaae5dc384ae070c49507a92b1375397954cd (patch)
tree048661e5d8448c8cb39a4453fe36f4e6c8746384 /shell/hush_test/hush-vars/var.tests
parente0a336747c2061d0d555c4e15287b513831d2947 (diff)
downloadbusybox-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/var.tests')
-rw-r--r--shell/hush_test/hush-vars/var.tests10
1 files changed, 0 insertions, 10 deletions
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 $?; }