Ignore harmless test failures on 32-bit architectures

epel10
Fabio Valentini 2 years ago
parent 834b901ddd
commit 6685f969e0
No known key found for this signature in database
GPG Key ID: 5AC5F572E5D410AF

@ -89,8 +89,14 @@ use the "string" feature of the "%{crate}" crate.
%check
# * integration tests can only be run in-tree
%cargo_test -- --lib
%ifarch %{ix86}
# * ignore harmless test failures on 32-bit architectures:
# https://github.com/rust-lang/regex/issues/1041
%cargo_test -- --doc -- --skip string::CaptureLocations
%else
%cargo_test -- --doc
%endif
%endif
%changelog
%autochangelog

Loading…
Cancel
Save