Skip to content

Commit 3efe25f

Browse files
authored
Rollup merge of #98491 - antoyo:fix/ui-test-backtrace-panic-abort, r=Dylan-DPC
Fix backtrace UI test when panic=abort is used The function `contains_verbose_expected` is only used when the panic strategy is not abort, so it caused a warning when it was abort, which made the UI test failed on stderr comparison.
2 parents 6bdce1d + 50a46b9 commit 3efe25f

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/test/ui/backtrace.rs

+1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ fn expected(fn_name: &str) -> String {
4343
format!(" backtrace::{}", fn_name)
4444
}
4545

46+
#[cfg(not(panic = "abort"))]
4647
fn contains_verbose_expected(s: &str, fn_name: &str) -> bool {
4748
// HACK(eddyb) work around the fact that verbosely demangled stack traces
4849
// (from `RUST_BACKTRACE=full`, or, as is the case here, panic-in-panic)

0 commit comments

Comments
 (0)