From c88084895d2b00f242082f47cbd5d3feef058eed Mon Sep 17 00:00:00 2001 From: Peter Stephenson Date: Thu, 1 Dec 2011 14:22:55 +0000 Subject: 29923: work around test problem with invalid file descriptor message --- ChangeLog | 7 ++++++- Test/A04redirect.ztst | 24 +++++++++++++++++++----- 2 files changed, 25 insertions(+), 6 deletions(-) diff --git a/ChangeLog b/ChangeLog index 1bff2da72..ae8cf1aba 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2011-12-01 Peter Stephenson + + * 29923: Test/A04redirect.ztst: work around variant message from + strerror() for invalid file descriptor. + 2011-11-30 Peter Stephenson * Config/version.mk: 4.3.13 release. @@ -15627,5 +15632,5 @@ ***************************************************** * This is used by the shell to define $ZSH_PATCHLEVEL -* $Revision: 1.5509 $ +* $Revision: 1.5510 $ ***************************************************** diff --git a/Test/A04redirect.ztst b/Test/A04redirect.ztst index e58102664..838cb196d 100644 --- a/Test/A04redirect.ztst +++ b/Test/A04redirect.ztst @@ -153,17 +153,31 @@ >goodbye (exec 3<&- - read foo <&-) -1:'<&-' redirection -?(eval):1: failed to close file descriptor 3: bad file descriptor + read foo <&-) 2>errmsg1.txt + mystat=$? + (( $mystat == 1 )) || print "Unexpected error status $mystat" >&2 + input=("${(f)$(&2 + fi +0:'<&-' redirection print foo >&- 0:'>&-' redirection (exec >&- - print foo) + print foo) 2>errmsg2.txt + mystat=$? + (( $mystat == 0 )) || print "Unexpected error status $mystat" >&2 + input=("${(f)$(&2 + fi 0:'>&-' with attempt to use closed fd -?(eval):2: write error: bad file descriptor fn() { local foo; read foo; print $foo; } coproc fn -- cgit 1.4.1