gnu: julia-structarrays: Fix tests on i686-linux.

* gnu/packages/julia-xyz.scm (julia-structarrays)[arguments]<#:phases>:
Conditionally replace the incorrect type in the test suite.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
zimoun 2021-12-01 16:54:40 +01:00 committed by Efraim Flashner
parent afd35e8e9c
commit eb4f1fcf74
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -4601,6 +4601,16 @@ (define-public julia-structarrays
(sha256
(base32 "0rjcpyjwzg70n87q5r9c5i1qzigavncslxssm3rk5a3y549py56v"))))
(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* '("src/utils.jl"
"test/runtests.jl")
(("Int64") "Int32")))))))))
(propagated-inputs
`(("julia-dataapi" ,julia-dataapi)
("julia-staticarrays" ,julia-staticarrays)