[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/02: gnu: cmake-minimal: Skip tests for the Hurd.
From: |
guix-commits |
Subject: |
02/02: gnu: cmake-minimal: Skip tests for the Hurd. |
Date: |
Tue, 13 Jun 2023 00:40:48 -0400 (EDT) |
janneke pushed a commit to branch wip-hurd
in repository guix.
commit c32936bf16b5c8dc31bc6462568e732b7951266b
Author: Janneke Nieuwenhuizen <janneke@gnu.org>
AuthorDate: Mon Jun 12 20:26:45 2023 +0200
gnu: cmake-minimal: Skip tests for the Hurd.
* gnu/packages/cmake.scm (cmake-minimal)[arguments]: Add
%common-disabled-tests/hurdto skipped tests in phase 'check'.
---
gnu/packages/cmake.scm | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/cmake.scm b/gnu/packages/cmake.scm
index b55d201b5f..cdb31dd682 100644
--- a/gnu/packages/cmake.scm
+++ b/gnu/packages/cmake.scm
@@ -325,7 +325,10 @@ and workspaces that can be used in the compiler
environment of your choice.")
(lambda* (#:key tests? parallel-tests? #:allow-other-keys)
(let ((skipped-tests (list #$@%common-disabled-tests
;; This test requires the bundled
libuv.
- "BootstrapTest")))
+ "BootstrapTest"
+ #$@(if (target-hurd?)
+ %common-disabled-tests/hurd
+ #~()))))
(if tests?
(begin
(invoke "ctest" "-j" (if parallel-tests?