828bdc2c26
Change default panic handler message format. This changes the default panic hook's message format from: ``` thread '{thread}' panicked at '{message}', {location} ``` to ``` thread '{thread}' panicked at {location}: {message} ``` This puts the message on its own line without surrounding quotes, making it easiser to read. For example: Before: ``` thread 'main' panicked at 'env variable `IMPORTANT_PATH` should be set by `wrapper_script.sh`', src/main.rs:4:6 ``` After: ``` thread 'main' panicked at src/main.rs:4:6: env variable `IMPORTANT_PATH` should be set by `wrapper_script.sh` ``` --- See this PR by `@nyurik,` which does that for only multi-line messages (specifically because of `assert_eq`): https://github.com/rust-lang/rust/pull/111071 This is the change that does that for *all* panic messages.
39 lines
1.3 KiB
Rust
39 lines
1.3 KiB
Rust
// failure-status: 101
|
|
// known-bug: unknown
|
|
// error-pattern:internal compiler error
|
|
// normalize-stderr-test "internal compiler error.*" -> ""
|
|
// normalize-stderr-test "DefId\([^)]*\)" -> "..."
|
|
// normalize-stderr-test "\nerror: internal compiler error.*\n\n" -> ""
|
|
// normalize-stderr-test "note:.*unexpectedly panicked.*\n\n" -> ""
|
|
// normalize-stderr-test "note: we would appreciate a bug report.*\n\n" -> ""
|
|
// normalize-stderr-test "note: compiler flags.*\n\n" -> ""
|
|
// normalize-stderr-test "note: rustc.*running on.*\n\n" -> ""
|
|
// normalize-stderr-test "thread.*panicked.*:\n.*\n" -> ""
|
|
// normalize-stderr-test "stack backtrace:\n" -> ""
|
|
// normalize-stderr-test "\s\d{1,}: .*\n" -> ""
|
|
// normalize-stderr-test "\s at .*\n" -> ""
|
|
// normalize-stderr-test ".*note: Some details.*\n" -> ""
|
|
// normalize-stderr-test "\n[ ]*\n" -> ""
|
|
// normalize-stderr-test "compiler/.*: projection" -> "projection"
|
|
// normalize-stderr-test ".*omitted \d{1,} frame.*\n" -> ""
|
|
// normalize-stderr-test "error: [\s\n]*query stack during panic:\n" -> ""
|
|
// this should run-pass
|
|
|
|
#![feature(generic_const_exprs)]
|
|
#![allow(incomplete_features)]
|
|
|
|
const fn inner<'a>() -> usize where &'a (): Sized {
|
|
3
|
|
}
|
|
|
|
fn test<'a>() {
|
|
let _ = || {
|
|
let _: [u8; inner::<'a>()];
|
|
let _ = [0; inner::<'a>()];
|
|
};
|
|
}
|
|
|
|
fn main() {
|
|
test();
|
|
}
|