~ruther/guix-local

6a069618ab48600ffd241666cf8f9ed871c7484b — Efraim Flashner 8 years ago 44dd001
gnu: weechat: Disable tests on non-Intel architectures.

* gnu/packages/irc.scm (weechat)[arguments]: Disable tests on non-Intel
architectures.
1 files changed, 8 insertions(+), 1 deletions(-)

M gnu/packages/irc.scm
M gnu/packages/irc.scm => gnu/packages/irc.scm +8 -1
@@ 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