summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorGreg Hogan <code@greghogan.com>2024-10-22 18:09:27 +0000
committerGreg Hogan <code@greghogan.com>2025-08-04 04:10:29 +0000
commit09f38426036732dcfe6ed8fd72604d9b0607d9f9 (patch)
tree852303db7d11cdb643a6a4c88676813b60c68efe /gnu
parentab8d76505d900ed4bf6c2aa86fa8ef03e7cf2904 (diff)
gnu: qxmpp: Use #:test-exclude.
* gnu/packages/messaging.scm (qxmpp)[arguments] <#:test-exclude>: Move exclude regex here from 'check phase. <#:phases>: Remove 'check phase. Change-Id: I8116db30d3bbbeecc2e166f9d72329142bf4a26c
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/messaging.scm17
1 files changed, 6 insertions, 11 deletions
diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
index 886411d0f82..c08aed16bbc 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -414,17 +414,12 @@ conferencing.")
(arguments
`(#:configure-flags (list "-DBUILD_EXAMPLES=false"
"-DWITH_GSTREAMER=true")
- #:phases
- (modify-phases %standard-phases
- (replace 'check
- (lambda* (#:key tests? #:allow-other-keys)
- (when tests?
- (invoke "ctest" "-E"
- (string-join ;; These tests use the network.
- (list "tst_qxmppiceconnection"
- "tst_qxmppcallmanager"
- "tst_qxmpptransfermanager")
- "|"))))))))
+ #:test-exclude
+ (string-join ;; These tests use the network.
+ (list "tst_qxmppiceconnection"
+ "tst_qxmppcallmanager"
+ "tst_qxmpptransfermanager")
+ "|")))
(native-inputs
(list pkg-config))
(inputs