diff options
| author | Yelninei <yelninei@tutamail.com> | 2026-03-05 17:00:47 +0000 |
|---|---|---|
| committer | Janneke Nieuwenhuizen <janneke@gnu.org> | 2026-03-06 19:17:34 +0100 |
| commit | fa3d267dc788122e6766d978947897269b191de6 (patch) | |
| tree | bb4cf47a21fb2d0228f44826ab6269d9bb3d8383 /gnu | |
| parent | d5dec5822729b0ed9cc6893651c53a09347d6a75 (diff) | |
gnu: check: Skip tests on the 64bit Hurd.
* gnu/packages/check.scm (check): Disable tests for 64 bit Hurd targets.
Change-Id: I5ef1e16c69212d5feb763e4c01aac2a8c8f41075
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/check.scm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm index 19d1ee68ec9..35b5265a217 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") |
