diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2016-10-02 21:12:02 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2016-10-02 21:12:02 +0200 |
commit | 61508d9624703f2d0da8776e6a5e2333eadd5be9 (patch) | |
tree | 46ff0e0f9558af9b50011b4dfa07fecafa89d5a2 /shell/hush_test/hush-bugs | |
parent | ebedb9478d0d91d8aecf28531907e3a277450d0d (diff) | |
download | busybox-61508d9624703f2d0da8776e6a5e2333eadd5be9.tar.gz |
hush: fix var3.tests
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell/hush_test/hush-bugs')
-rw-r--r-- | shell/hush_test/hush-bugs/var3.right | 5 | ||||
-rwxr-xr-x | shell/hush_test/hush-bugs/var3.tests | 1 |
2 files changed, 0 insertions, 6 deletions
diff --git a/shell/hush_test/hush-bugs/var3.right b/shell/hush_test/hush-bugs/var3.right deleted file mode 100644 index 8eb0e3337..000000000 --- a/shell/hush_test/hush-bugs/var3.right +++ /dev/null @@ -1,5 +0,0 @@ -1 -1 - - -0 diff --git a/shell/hush_test/hush-bugs/var3.tests b/shell/hush_test/hush-bugs/var3.tests deleted file mode 100755 index 97b102cbe..000000000 --- a/shell/hush_test/hush-bugs/var3.tests +++ /dev/null @@ -1 +0,0 @@ -x=0; f() { local x=1; echo $x; local x; echo $x; unset x; echo $x; local x; echo $x; }; f; echo $x |