diff options
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 |