efraim pushed a commit to branch core-updates-frozen
in repository guix.
commit 7c8e9cbfa99f35d638bc92c03a06d3a35754ede1
Author: zimoun <[email protected]>
AuthorDate: Wed Dec 1 16:53:54 2021 +0100
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 <[email protected]>
---
gnu/packages/julia-xyz.scm | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm
index 0ae515c..f90901b 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