From 98907260ed77dd98f160686ca470bb0851016da1 Mon Sep 17 00:00:00 2001 From: Greg Hogan Date: Tue, 22 Oct 2024 18:09:28 +0000 Subject: [PATCH] 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 --- gnu/packages/games.scm | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index b0f13cfee9d1ea59741d31ef801cec018efd54ac..25555590c144bd65d1c8ee0b3d70d9d94fcfea87 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)