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 <efraim@flashner.co.il>
This commit is contained in:
zimoun 2021-12-01 16:53:54 +01:00 committed by Efraim Flashner
parent dcd7c950c6
commit 7c8e9cbfa9
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -2901,6 +2901,15 @@ (define-public julia-mappedarrays
(sha256 (sha256
(base32 "0l5adird8m1cmnsxwhzi5hcr7q9bm1rf7a6018zc7kcn2yxdshy3")))) (base32 "0l5adird8m1cmnsxwhzi5hcr7q9bm1rf7a6018zc7kcn2yxdshy3"))))
(build-system julia-build-system) (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 (propagated-inputs
`(("julia-fixedpointnumbers" ,julia-fixedpointnumbers))) `(("julia-fixedpointnumbers" ,julia-fixedpointnumbers)))
(native-inputs (native-inputs