From ced8d7c98196a390ee1b945c52f22e27ac12b471 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Kr=C3=BCger?= Date: Sat, 2 Dec 2023 17:28:21 +0100 Subject: [PATCH] update delay_span_bug -> span_delayed_bug rename https://github.com/rust-lang/rust/pull/118470 --- src/main.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main.rs b/src/main.rs index 16bbca1..278524d 100644 --- a/src/main.rs +++ b/src/main.rs @@ -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", @@ -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", @@ -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] {