mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-15 23:48:07 -05:00
gnu: guile-fibers: Skip some long tests on some architectures.
* gnu/packages/guile-xyz.scm (guile-fibers-1.1)[arguments]: Add custom phase to skip some overly long tests.
This commit is contained in:
parent
d169ae7c53
commit
e19b3d4003
1 changed files with 13 additions and 1 deletions
|
@ -620,7 +620,19 @@ (define-public guile-fibers-1.1
|
|||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
(list #:make-flags
|
||||
#~(list "GUILE_AUTO_COMPILE=0")))
|
||||
#~(list "GUILE_AUTO_COMPILE=0")
|
||||
#:phases
|
||||
(if (target-x86-64?)
|
||||
#~%standard-phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-before 'check 'disable-some-tests
|
||||
(lambda _
|
||||
;; This test can take more than an hour on some systems.
|
||||
(substitute* "tests/basic.scm"
|
||||
((".*spawn-fiber loop-to-1e4.*") ""))
|
||||
;; These tests can take more than an hour and/or segfault.
|
||||
(substitute* "Makefile"
|
||||
(("tests/speedup.scm") ""))))))))
|
||||
(native-inputs
|
||||
(list texinfo pkg-config autoconf automake libtool
|
||||
guile-3.0 ;for 'guild compile
|
||||
|
|
Loading…
Reference in a new issue