mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-16 11:55:27 -05:00
gnu: simgear: Honor #:tests? flag.
* gnu/packages/games.scm (simgear)[arguments]: Adjust custom 'check phase to honor the #:tests? flag.
This commit is contained in:
parent
3a5b1cc32a
commit
230b34cb5c
1 changed files with 4 additions and 3 deletions
|
@ -9275,9 +9275,10 @@ (define simgear
|
||||||
`(#:phases
|
`(#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(replace 'check
|
(replace 'check
|
||||||
(lambda _
|
(lambda* (#:key tests? #:allow-other-keys)
|
||||||
|
(when tests?
|
||||||
;; Skip tests that require internet access.
|
;; Skip tests that require internet access.
|
||||||
(invoke "ctest" "-E" "(http|dns)"))))))
|
(invoke "ctest" "-E" "(http|dns)")))))))
|
||||||
(inputs
|
(inputs
|
||||||
`(("boost" ,boost-for-mysql) ; fails with 1.69
|
`(("boost" ,boost-for-mysql) ; fails with 1.69
|
||||||
("curl" ,curl)
|
("curl" ,curl)
|
||||||
|
|
Loading…
Reference in a new issue