diff options
author | Axel Beckert <abe@deuxchevaux.org> | 2015-09-11 21:52:28 +0200 |
---|---|---|
committer | Axel Beckert <abe@deuxchevaux.org> | 2015-09-11 21:52:28 +0200 |
commit | bcea5a1cf43d1362084742753615a349633f161b (patch) | |
tree | 9f2697e11cb7f14e836f98eaf90f270072a05839 /debian/patches/further-mitigate-test-suite-hangs.patch | |
parent | 7534dfa8848251305ad2914c338f232050f6a500 (diff) | |
download | zsh-bcea5a1cf43d1362084742753615a349633f161b.tar.gz zsh-bcea5a1cf43d1362084742753615a349633f161b.zip |
Revert "Extend further-mitigate-test-suite-hangs.patch to mitigate a race condition in E01options.ztst"
This reverts commit 0867ec1ff0013deb0095aa769b529a33a24059f8.
Diffstat (limited to 'debian/patches/further-mitigate-test-suite-hangs.patch')
-rw-r--r-- | debian/patches/further-mitigate-test-suite-hangs.patch | 21 |
1 files changed, 3 insertions, 18 deletions
diff --git a/debian/patches/further-mitigate-test-suite-hangs.patch b/debian/patches/further-mitigate-test-suite-hangs.patch index a824b76d6..8c96e6996 100644 --- a/debian/patches/further-mitigate-test-suite-hangs.patch +++ b/debian/patches/further-mitigate-test-suite-hangs.patch @@ -1,14 +1,12 @@ Origin: http://www.zsh.org/mla/workers/2014/msg01250.html - http://www.zsh.org/mla/workers/2015/msg02382.html -Author: Bart Schaefer <schaefer@brasslantern.com>, - Peter Stephenson <p.stephenson@samsung.com> +Author: Bart Schaefer <schaefer@brasslantern.com> Bug-Debian: https://bugs.debian.org/759870 Description: Add a sleep call which should prevent a race condition in coproc Index: zsh/Test/A05execution.ztst =================================================================== ---- zsh.orig/Test/A05execution.ztst 2015-09-09 20:44:09.944160810 +0200 -+++ zsh/Test/A05execution.ztst 2015-09-09 20:44:09.940160826 +0200 +--- zsh.orig/Test/A05execution.ztst 2015-08-30 22:03:54.257198175 +0200 ++++ zsh/Test/A05execution.ztst 2015-08-30 22:03:54.257198175 +0200 @@ -208,6 +208,7 @@ print -u $ZTST_fd 'This test takes 5 seconds to fail...' { printf "%d\n" {1..20000} } 2>/dev/null | ( read -e ) @@ -17,16 +15,3 @@ Index: zsh/Test/A05execution.ztst print -p done read -et 6 -p 0:Bug regression: piping a shell construct to an external process may hang -Index: zsh/Test/E01options.ztst -=================================================================== ---- zsh.orig/Test/E01options.ztst 2015-09-08 23:39:06.098975526 +0200 -+++ zsh/Test/E01options.ztst 2015-09-09 20:48:47.998938558 +0200 -@@ -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 - } |