diff options
Diffstat (limited to 'shell/hush_test/hush-bugs')
-rw-r--r-- | shell/hush_test/hush-bugs/env_and_func.right | 2 | ||||
-rwxr-xr-x | shell/hush_test/hush-bugs/env_and_func.tests | 6 |
2 files changed, 0 insertions, 8 deletions
diff --git a/shell/hush_test/hush-bugs/env_and_func.right b/shell/hush_test/hush-bugs/env_and_func.right deleted file mode 100644 index 4a1545058..000000000 --- a/shell/hush_test/hush-bugs/env_and_func.right +++ /dev/null @@ -1,2 +0,0 @@ -var=val -var=old diff --git a/shell/hush_test/hush-bugs/env_and_func.tests b/shell/hush_test/hush-bugs/env_and_func.tests deleted file mode 100755 index d62c1af40..000000000 --- a/shell/hush_test/hush-bugs/env_and_func.tests +++ /dev/null @@ -1,6 +0,0 @@ -# UNFIXED BUG - -var=old -f() { echo "var=$var"; } -var=val f -echo "var=$var" |