[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/01: gnu: weechat: Disable tests on non-Intel architectures.
From: |
Efraim Flashner |
Subject: |
01/01: gnu: weechat: Disable tests on non-Intel architectures. |
Date: |
Sat, 23 Dec 2017 13:52:58 -0500 (EST) |
efraim pushed a commit to branch master
in repository guix.
commit 6a069618ab48600ffd241666cf8f9ed871c7484b
Author: Efraim Flashner <address@hidden>
Date: Sat Dec 23 20:39:18 2017 +0200
gnu: weechat: Disable tests on non-Intel architectures.
* gnu/packages/irc.scm (weechat)[arguments]: Disable tests on non-Intel
architectures.
---
gnu/packages/irc.scm | 9 ++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/irc.scm b/gnu/packages/irc.scm
index ec329ad..f367032 100644
--- a/gnu/packages/irc.scm
+++ b/gnu/packages/irc.scm
@@ -58,7 +58,9 @@
#:use-module (gnu packages tcl)
#:use-module (gnu packages time)
#:use-module (gnu packages tls)
- #:use-module (gnu packages web))
+ #:use-module (gnu packages web)
+ #:use-module (srfi srfi-1)
+ #:use-module (srfi srfi-26))
(define-public quassel
(package
@@ -182,6 +184,11 @@ SILC and ICB protocols via plugins.")
(arguments
`(#:configure-flags
(list "-DENABLE_TESTS=ON") ; ‘make test’ fails otherwise
+ ;; Tests hang indefinately on non-Intel platforms.
+ #:tests? ,(if (any (cute string-prefix? <> (or (%current-target-system)
+ (%current-system)))
+ '("i686" "x86_64"))
+ '#t '#f)
#:phases
(modify-phases %standard-phases
(add-after 'unpack 'disable-failing-tests