From: Roman Scherer <roman@burningswell.com>
To: 68484@debbugs.gnu.org
Cc: Roman Scherer <roman@burningswell.com>
Subject: [bug#68484] [PATCH] gnu: guile-fibers: Disable failing tests on aarch64.
Date: Mon, 15 Jan 2024 20:57:00 +0100 [thread overview]
Message-ID: <d7961d2119012fd17284604ccde2d242d16ee1dd.1705348597.git.roman@burningswell.com> (raw)
* gnu/packages/guile-xyz.scm (guile-fibers): Disable failing tests on aarch64.
Change-Id: Id05b516a659f641cc7ef01efdaf6cd1f2c735800
---
gnu/packages/guile-xyz.scm | 31 +++++++++++++++++++++----------
1 file changed, 21 insertions(+), 10 deletions(-)
diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm
index 77be632cc3..9b0f27016d 100644
--- a/gnu/packages/guile-xyz.scm
+++ b/gnu/packages/guile-xyz.scm
@@ -824,16 +824,27 @@ (define-public guile-fibers
#~(list "GUILE_AUTO_COMPILE=0")
#:phases
(if (target-x86-64?)
- #~%standard-phases
- #~(modify-phases %standard-phases
- (add-before 'check 'disable-some-tests
- (lambda _
- ;; This test can take more than an hour on some systems.
- (substitute* "tests/basic.scm"
- ((".*spawn-fiber loop-to-1e4.*") ""))
- ;; These tests can take more than an hour and/or segfault.
- (substitute* "Makefile"
- (("tests/speedup.scm") ""))))))))
+ #~%standard-phases
+ #~(modify-phases %standard-phases
+ (add-before 'check 'disable-some-tests
+ (lambda _
+ (substitute* "tests/basic.scm"
+ ;; This test can take more than an hour on some systems.
+ ((".*spawn-fiber loop-to-1e4.*") "")
+ ;; This test has issues on aarch64 systems. It passes
+ ;; on an Apple M1, but takes a very long time on a
+ ;; Hetzner aarch64 VM.
+ ((".*spawn-fiber-chain 5000000.*") ""))
+
+ (substitute* "tests/channels.scm"
+ ;; This test has issues on aarch64 systems. It passes
+ ;; on an Apple M1, but raises exceptions on a Hetzner
+ ;; aarch64 VM.
+ ((".*assert-run-fibers-terminates .*pingpong.*") ""))
+
+ ;; These tests can take more than an hour and/or segfault.
+ (substitute* "Makefile"
+ (("tests/speedup.scm") ""))))))))
(native-inputs
(list texinfo pkg-config autoconf-2.71 automake libtool
guile-3.0 ;for 'guild compile
base-commit: 162d6a2fdd6af13272967c77347a54934ecb45e6
--
2.41.0
next reply other threads:[~2024-01-15 19:58 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-01-15 19:57 Roman Scherer [this message]
2024-01-17 9:56 ` [bug#68484] [PATCH] gnu: guile-fibers: Disable failing tests on aarch64 Mathieu Othacehe
2024-01-17 19:46 ` Roman Scherer
2024-01-17 19:48 ` [bug#68484] [PATCH v2] " Roman Scherer
2024-01-24 22:30 ` bug#68484: " Ludovic Courtès
2024-01-24 22:45 ` [bug#68484] " Roman Scherer
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=d7961d2119012fd17284604ccde2d242d16ee1dd.1705348597.git.roman@burningswell.com \
--to=roman@burningswell.com \
--cc=68484@debbugs.gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.