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, 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 $?; }