diff options
Diffstat (limited to 'shell/hush_test/hush-vars/var_preserved.tests')
-rwxr-xr-x | shell/hush_test/hush-vars/var_preserved.tests | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/shell/hush_test/hush-vars/var_preserved.tests b/shell/hush_test/hush-vars/var_preserved.tests new file mode 100755 index 000000000..132d387b4 --- /dev/null +++ b/shell/hush_test/hush-vars/var_preserved.tests @@ -0,0 +1,16 @@ +export a=a + +# external program +a=b /bin/true +env | grep ^a= + +# builtin +a=b true +env | grep ^a= + +# exec with redirection only +# in bash, this leaks! +a=b exec 1>&1 +env | grep ^a= + +echo OK |