mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-24 03:29:40 -05:00
gnu: julia-interpolations: Disable tests in i686-linux.
* gnu/packages/julia-xyz.scm (julia-interpolations)[arguments]<#:tests?>: Conditionally disable tests. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
e3c15b0bfc
commit
28d530ea44
1 changed files with 6 additions and 1 deletions
|
@ -2581,7 +2581,12 @@ (define-public julia-interpolations
|
||||||
(base32 "1236c20k388qlh7k74mhf7hkbn0vf7ss8b1rgh1a6aj0234ayfnc"))))
|
(base32 "1236c20k388qlh7k74mhf7hkbn0vf7ss8b1rgh1a6aj0234ayfnc"))))
|
||||||
(build-system julia-build-system)
|
(build-system julia-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:parallel-tests? #f))
|
`(#:parallel-tests? #f
|
||||||
|
;; XXXX: Unexpected failures for i686, e.g.,
|
||||||
|
;; Got exception outside of a @test
|
||||||
|
;; OverflowError: 96908232 * 106943408 overflowed for type Int32
|
||||||
|
;; Disable as stopgap.
|
||||||
|
#:tests? ,(not (target-x86-32?))))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("julia-axisalgorithms" ,julia-axisalgorithms)
|
`(("julia-axisalgorithms" ,julia-axisalgorithms)
|
||||||
("julia-offsetarrays" ,julia-offsetarrays)
|
("julia-offsetarrays" ,julia-offsetarrays)
|
||||||
|
|
Loading…
Reference in a new issue