diff options
author | Greg Hogan <code@greghogan.com> | 2024-10-22 18:09:28 +0000 |
---|---|---|
committer | Greg Hogan <code@greghogan.com> | 2025-07-30 16:28:13 +0000 |
commit | a3d0c360f751ffa4f723f8733fb6d0971ced5c69 (patch) | |
tree | e93cc8678d5384cccc7f0d2decbfda541eec8f4f | |
parent | 60c820fc9f39837553d32d4f7db8793c34f32c24 (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
-rw-r--r-- | gnu/packages/games.scm | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index 8383687624..43837b5c19 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -11054,13 +11054,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) |