mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 05:48:07 -05:00
gnu: weechat: Disable tests on non-Intel architectures.
* gnu/packages/irc.scm (weechat)[arguments]: Disable tests on non-Intel architectures.
This commit is contained in:
parent
44dd001d87
commit
6a069618ab
1 changed files with 8 additions and 1 deletions
|
@ -58,7 +58,9 @@ (define-module (gnu packages irc)
|
|||
#: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 @@ (define-public weechat
|
|||
(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
|
||||
|
|
Loading…
Reference in a new issue