Skip to content

Commit ced8d7c

Browse files
committed
update delay_span_bug -> span_delayed_bug rename
rust-lang/rust#118470
1 parent 288a732 commit ced8d7c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1684,7 +1684,7 @@ fn find_ICE_string(
16841684
"platform_intrinsics", // feature(..)
16851685
"::SIGSEGV",
16861686
"SIGSEGV::",
1687-
"delay_span_bug_from_inside_query",
1687+
"span_delayed_bug_from_inside_query",
16881688
"#[rustc_variance]",
16891689
"rustc_layout_scalar_valid_range_end", // rustc attr
16901690
"rustc_attrs",
@@ -1731,7 +1731,7 @@ fn find_ICE_string(
17311731
"Miri caused an ICE during evaluation.",
17321732
"^thread '.*' panicked at",
17331733
"^query stack during panic",
1734-
"^error: internal compiler error: no errors encountered even though `delay_span_bug` issued$",
1734+
"^error: internal compiler error: no errors encountered even though `span_delayed_bug` issued$",
17351735
"^error: internal compiler error: ",
17361736
"RUST_BACKTRACE=",
17371737
"error: Undefined Behavior",
@@ -1795,7 +1795,7 @@ fn find_ICE_string(
17951795
}
17961796
}
17971797

1798-
let delay_span_bug_regex = Regex::new("^error: internal compiler error: no errors encountered even though `delay_span_bug` issued$").unwrap();
1798+
let delay_span_bug_regex = Regex::new("^error: internal compiler error: no errors encountered even though `span_delayed_bug` issued$").unwrap();
17991799

18001800
/*
18011801
for text in [&output.stdout, &output.stderr] {

0 commit comments

Comments
 (0)