From f886fd2bc7b313d5616e88822387cc6fd6898f34 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Mon, 13 Oct 2008 12:36:05 +0000 Subject: hush: fix NOMMU bug (analogous to preceding commit for MMU) --- shell/hush_test/hush-vars/var_preserved.tests | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'shell/hush_test/hush-vars/var_preserved.tests') diff --git a/shell/hush_test/hush-vars/var_preserved.tests b/shell/hush_test/hush-vars/var_preserved.tests index 132d387..1bddd87 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 -- cgit v1.1