diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Test/E01options.ztst | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index bed312c3d..b9bb8a575 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2015-09-10 Peter Stephenson <p.stephenson@samsung.com> + + * 36460: Test/E01options.ztst: Discard benign error on failure + to write to pipe with no one reading. + 2015-09-08 Oliver Kiddle <opk@zsh.org> 36422: Src/compat.c: add missing unmeta() diff --git a/Test/E01options.ztst b/Test/E01options.ztst index 16279b88a..2b91b21fa 100644 --- a/Test/E01options.ztst +++ b/Test/E01options.ztst @@ -995,7 +995,7 @@ print this is bar >bar fn() { local NULLCMD=cat READNULLCMD=cat - echo hello | >foo + { echo hello | >foo } 2>/dev/null cat foo <bar } |