From ffb3168586ef04d83319b10ecf02c84ea4809447 Mon Sep 17 00:00:00 2001 From: Peter Stephenson Date: Wed, 15 Apr 2015 21:29:04 +0100 Subject: 34901: Test for the previous commit --- ChangeLog | 2 ++ Test/A04redirect.ztst | 17 +++++++++++++++++ 2 files changed, 19 insertions(+) diff --git a/ChangeLog b/ChangeLog index e41d8b893..05d4cf094 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2015-04-15 Peter Stephenson + * 34901: Test/A04redirect.ztst: Test for the foregoing. + * 34900: Src/exec.c: assignment before an "exec" with a redirection, with and without POSIXBUILTINS. diff --git a/Test/A04redirect.ztst b/Test/A04redirect.ztst index 13f1f7cb5..602341d05 100644 --- a/Test/A04redirect.ztst +++ b/Test/A04redirect.ztst @@ -538,3 +538,20 @@ print $functions[noredirfn] 0:Output from $functions[] for definition with no redirection > print This rather boring function has no redirection. + + (x=43 + x=$(print This should appear, really >&2; print Not used) exec >test.log + print x=$x) + cat test.log +0:Assignment with exec used for redirection: no POSIX_BUILTINS +>x=43 +?This should appear, really + + (setopt POSIX_BUILTINS + x=45 + x=$(print This should appear, too >&2; print And this) exec >test.log + print x=$x) + cat test.log +0:Assignment with exec used for redirection: POSIX_BUILTINS +>x=And this +?This should appear, too -- cgit 1.4.1