summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBarton E. Schaefer <schaefer@zsh.org>2015-08-27 09:21:18 -0700
committerBarton E. Schaefer <schaefer@zsh.org>2015-08-27 09:21:18 -0700
commit51f5898dc0209684b9c468f0dc5500e86fc16325 (patch)
treeea5288de864f65e34ef68419557eaf23d5e6f5b4
parent85645fd683761090e55b9979cd3a4115dfec23c8 (diff)
downloadzsh-51f5898dc0209684b9c468f0dc5500e86fc16325.tar.gz
zsh-51f5898dc0209684b9c468f0dc5500e86fc16325.zip
cf. Axel Beckert 36292: discard even more extraneous stderr in "hang" test
-rw-r--r--ChangeLog5
-rw-r--r--Test/A05execution.ztst2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 73a8e7217..7a90e7569 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2015-08-27 Barton E. Schaefer <schaefer@zsh.org>
+
+ * unposted (cf. Axel Beckert 36292): Test/A05execution.ztst:
+ discard even more extraneous stderr in "hang" test
+
2015-08-26 Barton E. Schaefer <schaefer@zsh.org>
* 36288: Src/Zle/zle_tricky.c: refine 36825, slightly different
diff --git a/Test/A05execution.ztst b/Test/A05execution.ztst
index d9e640954..a504ac41a 100644
--- a/Test/A05execution.ztst
+++ b/Test/A05execution.ztst
@@ -206,7 +206,7 @@ F:This similar test was triggering a reproducible failure with pipestatus.
{ unsetopt MONITOR } 2>/dev/null
coproc { read -et 5 || { print -u $ZTST_fd KILLED; kill -HUP -$$ } }
print -u $ZTST_fd 'This test takes 5 seconds to fail...'
- { printf "%d\n" {1..20000} } | ( read -e )
+ { printf "%d\n" {1..20000} } 2>/dev/null | ( read -e )
hang(){ printf "%d\n" {2..20000} | cat }; hang 2>/dev/null | ( read -e )
print -p done
read -et 6 -p