[Pkg-zsh-commits] [zsh] 01/01: Don't even try to run test suite on hurd, it hangs

Axel Beckert abe at deuxchevaux.org
Wed Mar 12 08:42:49 UTC 2014


This is an automated email from the git hooks/post-receive script.

abe pushed a commit to branch debian
in repository zsh.

commit befdc25af258fa460a5b33637f96fc6cf275da03
Author: Axel Beckert <abe at deuxchevaux.org>
Date:   Wed Mar 12 09:40:51 2014 +0100

    Don't even try to run test suite on hurd, it hangs
    
    Hence ignoring just the exit code on hurd doesn't help
---
 debian/rules | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/debian/rules b/debian/rules
index 3236313..d6201a1 100755
--- a/debian/rules
+++ b/debian/rules
@@ -46,7 +46,9 @@ build: build-arch build-indep
 
 build-arch: configure-stamp
 	dh_auto_build -B obj --parallel
-	HOME="$(CURDIR)/obj/testhome" dh_auto_test -B obj --parallel || test `dpkg-architecture -qDEB_BUILD_ARCH` = hurd-i386
+	if dpkg-architecture -qDEB_BUILD_ARCH_OS | grep -qv hurd; then \
+		HOME="$(CURDIR)/obj/testhome" dh_auto_test -B obj --parallel; \
+	fi
 	touch $@
 
 build-indep: configure-stamp

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/collab-maint/zsh.git



More information about the Pkg-zsh-commits mailing list