We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f57eac1 commit 5081393Copy full SHA for 5081393
1 file changed
library/alloctests/tests/sort/partial.rs
@@ -79,6 +79,10 @@ fn basic_impl() {
79
fn random_patterns() {
80
check_is_partial_sorted_ranges(&patterns::random(10));
81
check_is_partial_sorted_ranges(&patterns::random(50));
82
- check_is_partial_sorted_ranges(&patterns::random(100));
83
- check_is_partial_sorted_ranges(&patterns::random(1000));
+
+ // Longer tests would take hours to run under Miri.
84
+ if !cfg!(miri) {
85
+ check_is_partial_sorted_ranges(&patterns::random(100));
86
+ check_is_partial_sorted_ranges(&patterns::random(1000));
87
+ }
88
}
0 commit comments