diff options
author | Eric Bavier <bavier@cray.com> | 2017-12-13 15:37:58 -0600 |
---|---|---|
committer | Eric Bavier <bavier@member.fsf.org> | 2017-12-15 07:32:44 -0600 |
commit | 7683bf1183cfd05e5c4475265687096589d0239e (patch) | |
tree | 28d5f09597f90aeace11701098a81b66bc250806 /gnu | |
parent | 6ad0c92df5335191b30d7f32693f27b7c170759a (diff) | |
download | guix-7683bf1183cfd05e5c4475265687096589d0239e.tar guix-7683bf1183cfd05e5c4475265687096589d0239e.tar.gz |
gnu: texlive-bin: Disable tests on aarch64.
* gnu/packages/tex.scm (texlive-bin)[arguments]: Disable tests on aarch64.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/tex.scm | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 69dac602c8..4e8efc8faf 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 |