Skip to content

Commit

Permalink
update delay_span_bug -> span_delayed_bug rename
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiaskrgr committed Dec 2, 2023
1 parent 288a732 commit ced8d7c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1684,7 +1684,7 @@ fn find_ICE_string(
"platform_intrinsics", // feature(..)
"::SIGSEGV",
"SIGSEGV::",
"delay_span_bug_from_inside_query",
"span_delayed_bug_from_inside_query",
"#[rustc_variance]",
"rustc_layout_scalar_valid_range_end", // rustc attr
"rustc_attrs",
Expand Down Expand Up @@ -1731,7 +1731,7 @@ fn find_ICE_string(
"Miri caused an ICE during evaluation.",
"^thread '.*' panicked at",
"^query stack during panic",
"^error: internal compiler error: no errors encountered even though `delay_span_bug` issued$",
"^error: internal compiler error: no errors encountered even though `span_delayed_bug` issued$",
"^error: internal compiler error: ",
"RUST_BACKTRACE=",
"error: Undefined Behavior",
Expand Down Expand Up @@ -1795,7 +1795,7 @@ fn find_ICE_string(
}
}

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

/*
for text in [&output.stdout, &output.stderr] {
Expand Down

0 comments on commit ced8d7c

Please sign in to comment.