unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#29702] [PATCH] gnu: texlive-bin: Disable tests on aarch64.
@ 2017-12-13 22:52 Eric Bavier
  2017-12-14 17:24 ` Ludovic Courtès
  0 siblings, 1 reply; 2+ messages in thread
From: Eric Bavier @ 2017-12-13 22:52 UTC (permalink / raw)
  To: 29702; +Cc: Eric Bavier

* 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

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [bug#29702] [PATCH] gnu: texlive-bin: Disable tests on aarch64.
  2017-12-13 22:52 [bug#29702] [PATCH] gnu: texlive-bin: Disable tests on aarch64 Eric Bavier
@ 2017-12-14 17:24 ` Ludovic Courtès
  0 siblings, 0 replies; 2+ messages in thread
From: Ludovic Courtès @ 2017-12-14 17:24 UTC (permalink / raw)
  To: Eric Bavier; +Cc: 29702

Eric Bavier <bavier@cray.com> skribis:

> * gnu/packages/tex.scm (texlive-bin)[arguments]: Disable tests on aarch64.

Heheh, LGTM.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2017-12-14 17:25 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-12-13 22:52 [bug#29702] [PATCH] gnu: texlive-bin: Disable tests on aarch64 Eric Bavier
2017-12-14 17:24 ` Ludovic Courtès

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).