gnu: texlive-bin: Disable tests on aarch64.
authorEric Bavier <bavier@cray.com>
Wed, 13 Dec 2017 21:37:58 +0000 (15:37 -0600)
committerEric Bavier <bavier@member.fsf.org>
Fri, 15 Dec 2017 13:32:44 +0000 (07:32 -0600)
* gnu/packages/tex.scm (texlive-bin)[arguments]: Disable tests on aarch64.

gnu/packages/tex.scm

index 69dac60..4e8efc8 100644 (file)
          "--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