gnu: commencement: m4-boot0: Disable tests for the Hurd too.

GNU lib's stack-overflow tests fail.

* gnu/packages/commencement.scm (m4-boot0)[arguments]: Set #:tests? to #false
for the Hurd.
This commit is contained in:
Janneke Nieuwenhuizen 2023-05-29 19:37:18 +02:00
parent cf78f5b549
commit 524bd780a0
No known key found for this signature in database
GPG key ID: F3C1A0D9C1D65273

View file

@ -2492,8 +2492,9 @@ (define m4-boot0
`(#:guile ,%bootstrap-guile
#:implicit-inputs? #f
,@(package-arguments m4)
;; Ignore test failure in gnulib for armhf/aarch64.
#:tests? ,(not (target-arm?))))))
;; Ignore test failure in gnulib for armhf/aarch64 and Hurd
#:tests? ,(and (not (target-arm?))
(not (target-hurd?)))))))
(define bison-boot0
;; This Bison is needed to build MiG so we need it early in the process.