~ruther/guix-local

7683bf1183cfd05e5c4475265687096589d0239e — Eric Bavier 8 years ago 6ad0c92
gnu: texlive-bin: Disable tests on aarch64.

* gnu/packages/tex.scm (texlive-bin)[arguments]: Disable tests on aarch64.
1 files changed, 6 insertions(+), 4 deletions(-)

M gnu/packages/tex.scm
M gnu/packages/tex.scm => gnu/packages/tex.scm +6 -4
@@ 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