me
/
guix
Archived
1
0
Fork 0

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.
master
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
1 changed files with 3 additions and 2 deletions

View File

@ -2492,8 +2492,9 @@ exec " gcc "/bin/" program
`(#: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.