[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#52186] [core-updates-frozen PATCH v2 06/17] gnu: julia-lazyarrays:
From: |
zimoun |
Subject: |
[bug#52186] [core-updates-frozen PATCH v2 06/17] gnu: julia-lazyarrays: Fix tests on i686-linux. |
Date: |
Wed, 1 Dec 2021 16:53:52 +0100 |
* gnu/packages/julia-xyz.scm (julia-lazyarrays)[arguments]<#:phases>:
Conditionally replace the incorrect type in test suite.
---
gnu/packages/julia-xyz.scm | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm
index d673045033..e6efbfdf45 100644
--- a/gnu/packages/julia-xyz.scm
+++ b/gnu/packages/julia-xyz.scm
@@ -2811,6 +2811,16 @@ (define-public julia-lazyarrays
(sha256
(base32 "17rhlrmgfvdw8w62pg32ikr9j4xy2ylr7mx7ar0hnpzryv929rp5"))))
(build-system julia-build-system)
+ (arguments
+ `(#:phases
+ ,@(if (string-prefix? "i686" (or (%current-target-system)
+ (%current-system)))
+ '((modify-phases %standard-phases
+ (add-after 'unpack 'fix-tests-int32-i686
+ (lambda _
+ (substitute* "test/multests.jl"
+ (("Int64") "Int32"))))))
+ '(%standard-phases))))
(propagated-inputs
`(("julia-arraylayouts" ,julia-arraylayouts)
("julia-fillarrays" ,julia-fillarrays)
--
2.32.0
- [bug#52186] [core-updates-frozen PATCH v2 01/17] gnu: libunwind-julia: Fix build on i686-linux., zimoun, 2021/12/01
- [bug#52186] [core-updates-frozen PATCH v2 02/17] gnu: julia-datastructures: Fix tests on i686-linux., zimoun, 2021/12/01
- [bug#52186] [core-updates-frozen PATCH v2 03/17] gnu: julia-benchmarktools: Fix tests on i686-linux., zimoun, 2021/12/01
- [bug#52186] [core-updates-frozen PATCH v2 06/17] gnu: julia-lazyarrays: Fix tests on i686-linux.,
zimoun <=
- [bug#52186] [core-updates-frozen PATCH v2 05/17] gnu: julia-configurations: Fix tests on i686-linux., zimoun, 2021/12/01
- [bug#52186] [core-updates-frozen PATCH v2 07/17] gnu: julia-blockarrays: Fix tests on i686-linux., zimoun, 2021/12/01
- [bug#52186] [core-updates-frozen PATCH v2 04/17] gnu: julia-finitedifferences: Fix tests on i686-linux., zimoun, 2021/12/01
- [bug#52186] [core-updates-frozen PATCH v2 08/17] gnu: julia-mappedarrays: Fix tests on i686-linux., zimoun, 2021/12/01
- [bug#52186] [core-updates-frozen PATCH v2 09/17] gnu: julia-arrayinterface: Disable tests for i686., zimoun, 2021/12/01