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 000000000..4a1545058 --- /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 000000000..d62c1af40 --- /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" |