aboutsummaryrefslogtreecommitdiff
path: root/shell/hush_test/hush-vars/var.tests
diff options
context:
space:
mode:
Diffstat (limited to 'shell/hush_test/hush-vars/var.tests')
-rw-r--r--shell/hush_test/hush-vars/var.tests10
1 files changed, 10 insertions, 0 deletions
diff --git a/shell/hush_test/hush-vars/var.tests b/shell/hush_test/hush-vars/var.tests
new file mode 100644
index 000000000..b0637ea6b
--- /dev/null
+++ b/shell/hush_test/hush-vars/var.tests
@@ -0,0 +1,10 @@
1URL=http://busybox.net
2
3echo $URL
4echo ${URL}_abc
5
6true
7false; echo $?
8true
9# BUG: prints 0, must be 1
10{ false; echo $?; }