summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorGreg Hogan <code@greghogan.com>2024-10-22 18:09:28 +0000
committerGreg Hogan <code@greghogan.com>2025-08-04 04:10:30 +0000
commit98907260ed77dd98f160686ca470bb0851016da1 (patch)
treea81a0508debf8588757fdf35df4b60bb6c2642bf /gnu/packages
parent09f38426036732dcfe6ed8fd72604d9b0607d9f9 (diff)
gnu: simgear: Use #:test-exclude.
* gnu/packages/games.scm (simgear)[arguments] <#:test-exclude>: Move exclude regex here from 'check phase. <#:phases>: Remove 'check phase. Change-Id: I3ac389580949f8edafca5768335d491a2ea86650
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/games.scm8
1 files changed, 1 insertions, 7 deletions
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index b0f13cfee9d..25555590c14 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -11134,13 +11134,7 @@ levels to unlock.")
(build-system cmake-build-system)
(arguments
`(#:configure-flags (list "-DSYSTEM_EXPAT=ON")
- #:phases
- (modify-phases %standard-phases
- (replace 'check
- (lambda* (#:key tests? #:allow-other-keys)
- (when tests?
- ;; Skip tests that require internet access.
- (invoke "ctest" "-E" "(http|dns)")))))))
+ #:test-exclude "(http|dns)"))
(inputs
`(("boost" ,boost)
("curl" ,curl)