From 524bd780a02e3109d971aaf4fde48bc9a26afda8 Mon Sep 17 00:00:00 2001 From: Janneke Nieuwenhuizen Date: Mon, 29 May 2023 19:37:18 +0200 Subject: [PATCH] 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. --- gnu/packages/commencement.scm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm index ab07fb37ab3..78cfa4acd08 100644 --- a/gnu/packages/commencement.scm +++ b/gnu/packages/commencement.scm @@ -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.