diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-10-13 12:36:05 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-10-13 12:36:05 +0000 |
commit | f886fd2bc7b313d5616e88822387cc6fd6898f34 (patch) | |
tree | 6be3ac7ffd4337b7c2296337353778bff7483c99 /shell/hush_test/hush-vars/var_preserved.tests | |
parent | d29084dd7d23cb0efe0732b22aa669adcc5eaa0e (diff) |
hush: fix NOMMU bug (analogous to preceding commit for MMU)
Diffstat (limited to 'shell/hush_test/hush-vars/var_preserved.tests')
-rwxr-xr-x | shell/hush_test/hush-vars/var_preserved.tests | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/shell/hush_test/hush-vars/var_preserved.tests b/shell/hush_test/hush-vars/var_preserved.tests index 132d387b4..1bddd870f 100755 --- a/shell/hush_test/hush-vars/var_preserved.tests +++ b/shell/hush_test/hush-vars/var_preserved.tests @@ -1,16 +1,16 @@ -export a=a +export a=b # external program -a=b /bin/true +a=c /bin/true env | grep ^a= # builtin -a=b true +a=d true env | grep ^a= # exec with redirection only # in bash, this leaks! -a=b exec 1>&1 +a=e exec 1>&1 env | grep ^a= echo OK |