Skip a test that tends to hang indefinitely

epel10
Fabio Valentini 11 months ago
parent 8efd56c182
commit 88e7ea3436
No known key found for this signature in database
GPG Key ID: 5AC5F572E5D410AF

@ -1,5 +1,5 @@
--- rayon-1.9.0/Cargo.toml 1970-01-01T00:00:01+00:00 --- rayon-1.9.0/Cargo.toml 1970-01-01T00:00:01+00:00
+++ rayon-1.9.0/Cargo.toml 2024-03-05T14:03:02.218079+00:00 +++ rayon-1.9.0/Cargo.toml 2024-03-05T20:55:47.624022+00:00
@@ -44,18 +44,8 @@ @@ -44,18 +44,8 @@
[dependencies.rayon-core] [dependencies.rayon-core]
version = "1.12.1" version = "1.12.1"

@ -67,7 +67,9 @@ use the "default" feature of the "%{crate}" crate.
%if %{with check} %if %{with check}
%check %check
%cargo_test # * skip a test that tends to hang indefinitely:
# https://github.com/rayon-rs/rayon/issues/1142
%cargo_test -- -- --exact --skip par_bridge_recursion
%endif %endif
%changelog %changelog

@ -0,0 +1,5 @@
[tests]
skip = ["par_bridge_recursion"]
skip-exact = true
comments = ["skip a test that tends to hang indefinitely: https://github.com/rayon-rs/rayon/issues/1142"]
Loading…
Cancel
Save