This is an automated email from the git hooks/post-receive script.

guix_mirror_bot pushed a commit to branch hurd-team
in repository guix.

The following commit(s) were added to refs/heads/hurd-team by this push:
     new 8aa00ad484 gnu: check: Skip tests on the 64bit Hurd.
8aa00ad484 is described below

commit 8aa00ad484a95b1b06cfd399adf3b6ea214b4485
Author: Yelninei <[email protected]>
AuthorDate: Thu Mar 5 17:00:47 2026 +0000

    gnu: check: Skip tests on the 64bit Hurd.
    
    * gnu/packages/check.scm (check): Disable tests for 64 bit Hurd targets.
    
    Change-Id: I5ef1e16c69212d5feb763e4c01aac2a8c8f41075
---
 gnu/packages/check.scm | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm
index 25c165d81b..d42a0f0dfd 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -322,6 +322,10 @@ like Jasmine or Mocha.")
           (sha256
            (base32
             "04qg1p9afdd6453k18qskazrvscysdcjz9j6w4i6p5x4xyma19v6")))))))
+    (arguments
+     ;; FIXME: The tests hang on the 64bit Hurd.
+     (list #:tests? (and (not (%current-target-system))
+                         (not (system-hurd64?)))))
     (build-system gnu-build-system)
     (home-page "https://libcheck.github.io/check/";)
     (synopsis "Unit test framework for C")

Reply via email to