Skip a test that harmlessly fails on 32-bit architectures

epel10
Fabio Valentini 8 months ago
parent 6ea4dee388
commit 127085e254
No known key found for this signature in database
GPG Key ID: 5AC5F572E5D410AF

@ -87,8 +87,9 @@ use the "span-locations" feature of the "%{crate}" crate.
%if %{with check}
%check
# * skip a test that harmlessly fails on 32-bit architectures
# * skip doctests that don't compile
%cargo_test -- -- --skip 'src/lib.rs'
%cargo_test -- -- --skip test_proc_macro2_wrapper_size_without_locations --skip 'src/lib.rs'
%endif
%changelog

@ -5,6 +5,12 @@ summary = "Substitute implementation of the Rust compiler's proc_macro API"
hide = ["nightly"]
[tests]
skip = ["'src/lib.rs'"]
comments = ["skip doctests that don't compile"]
skip = [
"test_proc_macro2_wrapper_size_without_locations",
"'src/lib.rs'",
]
comments = [
"skip a test that harmlessly fails on 32-bit architectures",
"skip doctests that don't compile",
]

Loading…
Cancel
Save