about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rw-r--r--Test/A04redirect.ztst3
2 files changed, 9 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 84a8cb7d3..4e2eb33b2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2011-07-27  Peter Stephenson  <p.w.stephenson@ntlworld.com>
+
+	* 29561: Test/A04redirect.ztst: this bit didn't get committed,
+	somehow.
+
 2011-07-27  Mikael Magnusson <mikachu@gmail.com>
 
 	* 29618: Completion/Linux/Command/_ethtool,
@@ -15165,5 +15170,5 @@
 
 *****************************************************
 * This is used by the shell to define $ZSH_PATCHLEVEL
-* $Revision: 1.5408 $
+* $Revision: 1.5409 $
 *****************************************************
diff --git a/Test/A04redirect.ztst b/Test/A04redirect.ztst
index 4d96d8bb9..c2321a571 100644
--- a/Test/A04redirect.ztst
+++ b/Test/A04redirect.ztst
@@ -155,9 +155,12 @@
   (exec 3<&-
   read foo <&-)
 1:'<&-' redirection
+?(eval):1: failed to close file descriptor 3: bad file descriptor
+?(eval):2: failed to close file descriptor 0: bad file descriptor
 
   print foo >&-
 0:'>&-' redirection
+?(eval):1: failed to close file descriptor 1: bad file descriptor
 
   fn() { local foo; read foo; print $foo; }
   coproc fn