From 7c8e9cbfa99f35d638bc92c03a06d3a35754ede1 Mon Sep 17 00:00:00 2001 From: zimoun Date: Wed, 1 Dec 2021 16:53:54 +0100 Subject: gnu: julia-mappedarrays: Fix tests on i686-linux. * gnu/packages/julia-xyz.scm (julia-mappedarrays)[arguments]<#:phases>: Conditionally replace the incorrect type in test suite. Signed-off-by: Efraim Flashner --- gnu/packages/julia-xyz.scm | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'gnu') diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm index 0ae515cdd2..f90901b52d 100644 --- a/gnu/packages/julia-xyz.scm +++ b/gnu/packages/julia-xyz.scm @@ -2901,6 +2901,15 @@ that let you do deep transformations of code.") (sha256 (base32 "0l5adird8m1cmnsxwhzi5hcr7q9bm1rf7a6018zc7kcn2yxdshy3")))) (build-system julia-build-system) + (arguments + `(#:phases + ,@(if (target-64bit?) + '(%standard-phases) + '((modify-phases %standard-phases + (add-after 'unpack 'fix-tests-int32-i686 + (lambda _ + (substitute* "test/runtests.jl" + (("Int64") "Int32"))))))))) (propagated-inputs `(("julia-fixedpointnumbers" ,julia-fixedpointnumbers))) (native-inputs -- cgit v1.2.3