mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 23:06:59 +01:00
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:
parent
cf78f5b549
commit
524bd780a0
1 changed files with 3 additions and 2 deletions
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue