gnu: julia-genericlinearalgebra: Skip some tests on aarch64-linux.

* gnu/packages/julia-xyz.scm (julia-genericlinearalgebra)[arguments]:
When building for aarch64-linux add a phase to skip two tests.

Change-Id: I9aedee8fc0a4aec77181a3b3c6ab25412882f077
This commit is contained in:
Efraim Flashner 2024-09-12 11:24:45 +03:00
parent ca3803d6e2
commit d4869b7e43
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -2519,6 +2519,19 @@ (define-public julia-genericlinearalgebra
(sha256
(base32 "16k1r02w5qivvr99n5a9impbnnzygpj705irf5ypy208np91xyyd"))))
(build-system julia-build-system)
(arguments
(list
#:phases
(if (target-aarch64?)
#~(modify-phases %standard-phases
(add-after 'unpack 'skip-some-tests
(lambda _
(substitute* "test/lapack.jl"
(("@testset.*stedc.*" all)
(string-append all "return\n"))
(("@testset.*stemr.*" all)
(string-append all "return\n"))))))
#~%standard-phases)))
(native-inputs
(list julia-quaternions))
(home-page "https://github.com/JuliaLinearAlgebra/GenericLinearAlgebra.jl")