From 5f331381d462fbde52cc19b45748e3bce2a01a5c Mon Sep 17 00:00:00 2001 From: Fabio Valentini Date: Thu, 27 May 2021 16:44:34 +0200 Subject: [PATCH] temporarily ignore two tests on 32-bit architectures --- rust-futures.spec | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/rust-futures.spec b/rust-futures.spec index 315cf26..f42bd7a 100644 --- a/rust-futures.spec +++ b/rust-futures.spec @@ -6,7 +6,7 @@ Name: rust-%{crate} Version: 0.3.15 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Implementation of futures and streams # Upstream license specification: MIT OR Apache-2.0 @@ -226,10 +226,19 @@ which use "write-all-vectored" feature of "%{crate}" crate. %if %{with check} %check +%ifarch %{arm} %{ix86} +# ignore two test failures caused by hardcoded result expecting 64-bit pointers +# https://github.com/rust-lang/futures-rs/issues/2446 +%cargo_test -a -- -- --skip select_size --skip select_on_non_unpin_size +%else %cargo_test -a %endif +%endif %changelog +* Thu May 27 2021 Fabio Valentini - 0.3.15-2 +- Temporarily ignore two tests on 32-bit architectures. + * Thu May 27 2021 Fabio Valentini - 0.3.15-1 - Update to version 0.3.15.