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

* gnu/packages/julia-xyz (julia-geometrybasics)[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:54:41 +01:00 committed by Efraim Flashner
parent eb4f1fcf74
commit 82586916be
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -1981,14 +1981,18 @@ (define-public julia-geometrybasics
(lambda _
(substitute* '("Project.toml"
"src/GeometryBasics.jl")
((".*EarCut.*") ""))
#t))
((".*EarCut.*") ""))))
(add-after 'link-depot 'skip-incompatible-test
(lambda _
(substitute* "test/runtests.jl"
(("@testset.*MetaT and heterogeneous data.*" all)
(string-append all "return\n")))
#t)))))
(string-append all "return\n")))))
,@(if (target-64bit?)
'()
'((add-after 'unpack 'fix-tests-int32-i686
(lambda _
(substitute* "test/runtests.jl"
(("Int64") "Int32")))))))))
(propagated-inputs
`(("julia-itertools" ,julia-itertools)
("julia-staticarrays" ,julia-staticarrays)