guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

03/03: gnu: texlive-bin: Disable tests on aarch64.


From: Eric Bavier
Subject: 03/03: gnu: texlive-bin: Disable tests on aarch64.
Date: Fri, 15 Dec 2017 13:36:49 -0500 (EST)

bavier pushed a commit to branch master
in repository guix.

commit 7683bf1183cfd05e5c4475265687096589d0239e
Author: Eric Bavier <address@hidden>
Date:   Wed Dec 13 15:37:58 2017 -0600

    gnu: texlive-bin: Disable tests on aarch64.
    
    * 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 69dac60..4e8efc8 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -162,10 +162,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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]