guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

70/84: gnu: cmake-minimal: Skip tests for the Hurd.


From: guix-commits
Subject: 70/84: gnu: cmake-minimal: Skip tests for the Hurd.
Date: Wed, 14 Jun 2023 06:24:01 -0400 (EDT)

janneke pushed a commit to branch wip-hurd
in repository guix.

commit 8f78c39cba6537168961865512df9c0dad0255b5
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?



reply via email to

[Prev in Thread] Current Thread [Next in Thread]