aboutsummaryrefslogtreecommitdiff
path: root/shell/hush_test/hush-vars/var3.tests
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2016-10-02 21:12:02 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2016-10-02 21:12:02 +0200
commit61508d9624703f2d0da8776e6a5e2333eadd5be9 (patch)
tree46ff0e0f9558af9b50011b4dfa07fecafa89d5a2 /shell/hush_test/hush-vars/var3.tests
parentebedb9478d0d91d8aecf28531907e3a277450d0d (diff)
downloadbusybox-61508d9624703f2d0da8776e6a5e2333eadd5be9.tar.gz
hush: fix var3.tests
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell/hush_test/hush-vars/var3.tests')
-rwxr-xr-xshell/hush_test/hush-vars/var3.tests1
1 files changed, 1 insertions, 0 deletions
diff --git a/shell/hush_test/hush-vars/var3.tests b/shell/hush_test/hush-vars/var3.tests
new file mode 100755
index 000000000..97b102cbe
--- /dev/null
+++ b/shell/hush_test/hush-vars/var3.tests
@@ -0,0 +1 @@
+x=0; f() { local x=1; echo $x; local x; echo $x; unset x; echo $x; local x; echo $x; }; f; echo $x