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
parent
cf78f5b549
commit
524bd780a0
|
@ -2492,8 +2492,9 @@ exec " gcc "/bin/" program
|
||||||
`(#:guile ,%bootstrap-guile
|
`(#:guile ,%bootstrap-guile
|
||||||
#:implicit-inputs? #f
|
#:implicit-inputs? #f
|
||||||
,@(package-arguments m4)
|
,@(package-arguments m4)
|
||||||
;; Ignore test failure in gnulib for armhf/aarch64.
|
;; Ignore test failure in gnulib for armhf/aarch64 and Hurd
|
||||||
#:tests? ,(not (target-arm?))))))
|
#:tests? ,(and (not (target-arm?))
|
||||||
|
(not (target-hurd?)))))))
|
||||||
|
|
||||||
(define bison-boot0
|
(define bison-boot0
|
||||||
;; This Bison is needed to build MiG so we need it early in the process.
|
;; This Bison is needed to build MiG so we need it early in the process.
|
||||||
|
|
Reference in New Issue