diff options
author | Axel Beckert <abe@deuxchevaux.org> | 2013-12-15 01:55:13 +0100 |
---|---|---|
committer | Axel Beckert <abe@deuxchevaux.org> | 2013-12-15 01:55:13 +0100 |
commit | 54e2f2ee3c8c8a029a4934a0d00eb8f0240b2621 (patch) | |
tree | a9de2f216345e4b75a90cf4d73d64a1f2fffe467 | |
parent | 7cdfd51cfce5c4b12e3a65971917c5bb12c4f8ce (diff) | |
download | zsh-54e2f2ee3c8c8a029a4934a0d00eb8f0240b2621.tar.gz zsh-54e2f2ee3c8c8a029a4934a0d00eb8f0240b2621.zip |
Remove use-dev-null-instead-of-dev-tty-for-dash-c-test.patch again
It was introduced in the hope it would fix test suite failures on
hurd, but instead it made the test suite hang.
See https://buildd.debian.org/status/fetch.php?pkg=zsh&arch=hurd-i386&ver=5.0.2-6&stamp=1382813718
and https://buildd.debian.org/status/fetch.php?pkg=zsh&arch=hurd-i386&ver=5.0.2-test-3-1&stamp=1386548502
So since we now ignore the test suite results on hurd-i386, it's
better to have a failing test suite than to have a hanging test suite.
-rw-r--r-- | debian/patches/series | 1 | ||||
-rw-r--r-- | debian/patches/use-dev-null-instead-of-dev-tty-for-dash-c-test.patch | 21 |
2 files changed, 0 insertions, 22 deletions
diff --git a/debian/patches/series b/debian/patches/series index 2268b4303..8d7c83249 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -1,2 +1 @@ replace-texi2html-with-makeinfo -use-dev-null-instead-of-dev-tty-for-dash-c-test.patch diff --git a/debian/patches/use-dev-null-instead-of-dev-tty-for-dash-c-test.patch b/debian/patches/use-dev-null-instead-of-dev-tty-for-dash-c-test.patch deleted file mode 100644 index c8f50fbc2..000000000 --- a/debian/patches/use-dev-null-instead-of-dev-tty-for-dash-c-test.patch +++ /dev/null @@ -1,21 +0,0 @@ -Description: Use /dev/null instead of /dev/tty for -c test - Hopefully solves the according test suite failures on Hurd. Suggested - by Bart Martens. -Author: Axel Beckert <abe@debian.org> -Bug: http://www.zsh.org/mla/workers/2013/msg00547.html - -Index: zsh/Test/C02cond.ztst -=================================================================== ---- zsh.orig/Test/C02cond.ztst 2013-09-20 16:21:32.000000000 +0200 -+++ zsh/Test/C02cond.ztst 2013-09-20 17:59:03.000000000 +0200 -@@ -41,8 +41,8 @@ - fi - 0D:-b cond - -- # Use hardcoded /dev/tty because globbing inside /dev fails on Cygwin -- char=/dev/tty -+ # Use hardcoded /dev/null because of /dev/tty issues on GNU/Hurd -+ char=/dev/null - [[ -c $char && ! -c $zerolength ]] - 0:-c cond - |