From: Eric Bavier <bavier@cray.com>
To: 29702@debbugs.gnu.org
Cc: Eric Bavier <bavier@cray.com>
Subject: [bug#29702] [PATCH] gnu: texlive-bin: Disable tests on aarch64.
Date: Wed, 13 Dec 2017 16:52:58 -0600 [thread overview]
Message-ID: <1513205578-74346-1-git-send-email-bavier@cray.com> (raw)
* gnu/packages/tex.scm (texlive-bin)[arguments]: Disable tests on aarch64.
---
gnu/packages/tex.scm | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index adafdfd08..5611b3e6e 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -161,10 +161,12 @@
"--with-system-zlib"
"--with-system-zziplib")
- ;; Disable tests on mips64 to cope with a failure of luajiterr.test.
- ;; XXX FIXME fix luajit properly on mips64.
- #:tests? ,(not (string-prefix? "mips64" (or (%current-target-system)
- (%current-system))))
+ ;; Disable tests on mips64/aarch64 to cope with a failure of luajiterr.test.
+ ;; XXX FIXME fix luajit properly on mips64 and aarch64.
+ #:tests? ,(let ((s (or (%current-target-system)
+ (%current-system))))
+ (not (or (string-prefix? "aarch64" s)
+ (string-prefix? "mips64" s))))
#:phases
(modify-phases %standard-phases
(add-after 'install 'postint
--
2.15.0
next reply other threads:[~2017-12-13 22:54 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-12-13 22:52 Eric Bavier [this message]
2017-12-14 17:24 ` [bug#29702] [PATCH] gnu: texlive-bin: Disable tests on aarch64 Ludovic Courtès
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
List information: https://guix.gnu.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1513205578-74346-1-git-send-email-bavier@cray.com \
--to=bavier@cray.com \
--cc=29702@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 public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).