From 828012ed9f57f4bce6ce75ffd118f58a789d928d Mon Sep 17 00:00:00 2001 From: zimoun Date: Wed, 1 Dec 2021 16:54:37 +0100 Subject: gnu: julia-intervalsets: Fix tests on i686-linux. * gnu/packages/julia-xyz.scm (julia-intervalsets)[arguments]<#:phases>: Conditionally disable the failing test. Signed-off-by: Efraim Flashner --- gnu/packages/julia-xyz.scm | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'gnu') diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm index faa1fcdf60..af079534b2 100644 --- a/gnu/packages/julia-xyz.scm +++ b/gnu/packages/julia-xyz.scm @@ -2621,6 +2621,20 @@ and exceptional performance.") (sha256 (base32 "0gsz89cd3iygbl5qr389k9vwpg7w1nk0s90g25nsmk34y9hifxag")))) (build-system julia-build-system) + (arguments + `(#:phases + ,@(if (target-x86-32?) + '((modify-phases %standard-phases + (add-after 'unpack 'remove-failing-test-i686 + (lambda _ + (substitute* "test/runtests.jl" + ;; For some reason, the output is correct but the test + ;; is considered as failed: + ;; Expression: duration(ClosedInterval(A, B)) ≡ 60 + ;; Evaluated: 60 ≡ 60 + (("@test duration\\(ClosedInterval") + "@test_broken duration(ClosedInterval")))))) + '(%standard-phases)))) (propagated-inputs `(("julia-ellipsisnotation" ,julia-ellipsisnotation))) (native-inputs -- cgit v1.2.3