guix_mirror_bot pushed a commit to branch hurd-team
in repository guix.
commit fa3d267dc788122e6766d978947897269b191de6
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 19d1ee68ec..35b5265a21 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")