Ignore harmless test failures on 32-bit architectures

epel9
Fabio Valentini 2 years ago
parent 439870881e
commit 8b87ff2923
No known key found for this signature in database
GPG Key ID: 5AC5F572E5D410AF

@ -318,8 +318,14 @@ use the "use_std" feature of the "%{crate}" crate.
%if %{with check}
%check
%ifarch %{ix86}
# * ignore harmless test failures on 32-bit architectures:
# https://github.com/rust-lang/regex/issues/1039
%cargo_test -- -- --skip builders::bytes::RegexBuilder::size_limit --skip builders::bytes::RegexSetBuilder::size_limit --skip builders::string::RegexBuilder::size_limit --skip builders::string::RegexSetBuilder::size_limit --skip regex::bytes::CaptureLocations --skip regex::string::CaptureLocations
%else
%cargo_test
%endif
%endif
%changelog
%autochangelog

Loading…
Cancel
Save