[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
80/89: gnu: guile-2.0: Skip failing tests on the Hurd.
From: |
guix-commits |
Subject: |
80/89: gnu: guile-2.0: Skip failing tests on the Hurd. |
Date: |
Tue, 20 Jun 2023 05:59:03 -0400 (EDT) |
janneke pushed a commit to branch hurd-team
in repository guix.
commit 934b89461e04a2c4de485678230d64db36e5e718
Author: Janneke Nieuwenhuizen <janneke@gnu.org>
AuthorDate: Tue Jun 13 18:50:22 2023 +0200
gnu: guile-2.0: Skip failing tests on the Hurd.
* gnu/packages/guile.scm (guile-2.0)[arguments]: When building natively on
the
Hurd, add stage 'disable-threads.tests'...
(guile-2.2): ...and when building natively on the Hurd, delete it again.
---
gnu/packages/guile.scm | 16 +++++++++++++---
1 file changed, 13 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/guile.scm b/gnu/packages/guile.scm
index 30d8150db1..5f23de3ae8 100644
--- a/gnu/packages/guile.scm
+++ b/gnu/packages/guile.scm
@@ -212,8 +212,13 @@ without requiring the source code to be rewritten.")
(rename-file "test-suite/tests/srfi-18.test"
"srfi-18.test")
;; failed to remove 't-guild-compile-7215.go.tdL7yC
(substitute* "test-suite/standalone/Makefile.in"
- (("test-guild-compile ") ""))
- #t)))
+ (("test-guild-compile ") "")))))
+ '())
+ ,@(if (system-hurd?)
+ '((add-after 'unpack 'disable-threads.tests
+ (lambda _
+ ;; Many tests hang, esp. (join-thread ..), also others.
+ (rename-file "test-suite/tests/threads.test"
"threads.test"))))
'())
(add-before 'configure 'pre-configure
(lambda* (#:key inputs #:allow-other-keys)
@@ -286,7 +291,12 @@ without requiring the source code to be rewritten.")
(if (target-x86-32?) ;<https://issues.guix.gnu.org/49368>
`(append '("--disable-static")
'("CFLAGS=-g -O2 -fexcess-precision=standard"))
- flags))))
+ flags))
+ ((#:phases phases '%standard-phases)
+ #~(modify-phases #$phases
+ #$@(if (system-hurd?)
+ #~((delete 'disable-threads.tests))
+ '())))))
(properties '((timeout . 72000) ;20 hours
(max-silent-time . 36000))) ;10 hours (needed on ARM
- 54/89: gnu: libgcrypt: Skip hanging benchmark tests on the Hurd., (continued)
- 54/89: gnu: libgcrypt: Skip hanging benchmark tests on the Hurd., guix-commits, 2023/06/20
- 42/89: gnu: diffutils: Remove test-perror2 from XFAIL_TESTS on the Hurd., guix-commits, 2023/06/20
- 55/89: gnu: tcl: Remove failing tests on the Hurd.., guix-commits, 2023/06/20
- 33/89: gnu: commencement: mig-boot0: Update to 1.8+git20230520., guix-commits, 2023/06/20
- 51/89: gnu: libbsd: Skip failing test on the Hurd., guix-commits, 2023/06/20
- 75/89: gnu: ghostscript: Fix build for the Hurd., guix-commits, 2023/06/20
- 73/89: gnu: guile-git: Skip http proxy test on the Hurd., guix-commits, 2023/06/20
- 76/89: gnu: harfbuzz: Support build for the Hurd., guix-commits, 2023/06/20
- 78/89: gnu: fontforge: Support build on the Hurd., guix-commits, 2023/06/20
- 81/89: system: hurd: Add procps to %base-packages/hurd., guix-commits, 2023/06/20
- 80/89: gnu: guile-2.0: Skip failing tests on the Hurd.,
guix-commits <=
- 82/89: system: hurd: Add swap-services to hurd-default-essential-services., guix-commits, 2023/06/20
- 83/89: build: Build gnu/packages/*.go in four steps., guix-commits, 2023/06/20
- 86/89: gnu: guix: Update to 1.4.0-8.656960a93a., guix-commits, 2023/06/20
- 88/89: DRAFT hurd-boot: Support second boot., guix-commits, 2023/06/20
- 03/89: gnu: gnumach-headers: Cross-build without relying on x86., guix-commits, 2023/06/20
- 08/89: gnu: gnumach: Update to 1.8+git20221224., guix-commits, 2023/06/20
- 09/89: gnu: Add libc-locales-for-target and glibc-locales/hurd., guix-commits, 2023/06/20
- 04/89: gnu: hurd: Update supported systems., guix-commits, 2023/06/20
- 11/89: squash! gnu: mig: Update to 04bfe7a91223ba15d868f7165e49328b1c6e86c3., guix-commits, 2023/06/20
- 12/89: gnu: hurd: Update to v0.9.git20230216., guix-commits, 2023/06/20