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, 8 insertions, 0 deletions
diff --git a/shell/hush_test/hush-bugs/env_and_func.right b/shell/hush_test/hush-bugs/env_and_func.right new file mode 100644 index 0000000..4a15450 --- /dev/null +++ b/shell/hush_test/hush-bugs/env_and_func.right @@ -0,0 +1,2 @@ +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 new file mode 100755 index 0000000..d62c1af --- /dev/null +++ b/shell/hush_test/hush-bugs/env_and_func.tests @@ -0,0 +1,6 @@ +# UNFIXED BUG + +var=old +f() { echo "var=$var"; } +var=val f +echo "var=$var" |