From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:46235) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ePFug-0005tJ-TB for guix-patches@gnu.org; Wed, 13 Dec 2017 17:54:07 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ePFud-0006Hc-Pg for guix-patches@gnu.org; Wed, 13 Dec 2017 17:54:06 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:52278) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ePFud-0006HT-Mn for guix-patches@gnu.org; Wed, 13 Dec 2017 17:54:03 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ePFud-0002TA-Fg for guix-patches@gnu.org; Wed, 13 Dec 2017 17:54:03 -0500 Subject: [bug#29702] [PATCH] gnu: texlive-bin: Disable tests on aarch64. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:46016) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ePFtn-0005PY-GX for guix-patches@gnu.org; Wed, 13 Dec 2017 17:53:12 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ePFtj-0005eP-E0 for guix-patches@gnu.org; Wed, 13 Dec 2017 17:53:11 -0500 Received: from esa2.cray.iphmx.com ([68.232.143.164]:56105) by eggs.gnu.org with esmtps (TLS1.0:RSA_ARCFOUR_SHA1:16) (Exim 4.71) (envelope-from ) id 1ePFtj-0005dX-5p for guix-patches@gnu.org; Wed, 13 Dec 2017 17:53:07 -0500 From: Eric Bavier Date: Wed, 13 Dec 2017 16:52:58 -0600 Message-Id: <1513205578-74346-1-git-send-email-bavier@cray.com> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 29702@debbugs.gnu.org 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