diff options
author | Denys Vlasenko | 2016-10-02 21:12:02 +0200 |
---|---|---|
committer | Denys Vlasenko | 2016-10-02 21:12:02 +0200 |
commit | 61508d9624703f2d0da8776e6a5e2333eadd5be9 (patch) | |
tree | 46ff0e0f9558af9b50011b4dfa07fecafa89d5a2 /shell/hush_test/hush-vars/var3.tests | |
parent | ebedb9478d0d91d8aecf28531907e3a277450d0d (diff) | |
download | busybox-61508d9624703f2d0da8776e6a5e2333eadd5be9.zip busybox-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-x | shell/hush_test/hush-vars/var3.tests | 1 |
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 0000000..97b102c --- /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 |