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 040f37a commit edfaac6Copy full SHA for edfaac6
crates/ide-diagnostics/src/handlers/missing_match_arms.rs
@@ -23,6 +23,7 @@ mod tests {
23
},
24
DiagnosticsConfig,
25
};
26
+ use test_utils::skip_slow_tests;
27
28
#[track_caller]
29
fn check_diagnostics_no_bails(ra_fixture: &str) {
@@ -1006,6 +1007,9 @@ fn f() {
1006
1007
1008
#[test]
1009
fn exponential_match() {
1010
+ if skip_slow_tests() {
1011
+ return;
1012
+ }
1013
// Constructs a match where match checking takes exponential time. Ensures we bail early.
1014
use std::fmt::Write;
1015
let struct_arity = 30;
0 commit comments