mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 23:04:33 +00:00
cac7e42b52
This test case currently fails on s390x, and probably other platforms where the last line of a backtrace does not contain and " at <source location>" specification. The problem with the existing normalization lines // normalize-stderr-test "\s*\d{1,}: .*\n" -> "" // normalize-stderr-test "\s at .*\n" -> "" is that \s matches all whitespace, including newlines, so the first (but not second) of these regexes may merge multiple lines. Thus the output differs depending on which of these matches on the last line of a backtrace. As the whitespace used in backtraces is just normal space characters, change both regexes to just match at least one space character instead: // normalize-stderr-test " +\d{1,}: .*\n" -> "" // normalize-stderr-test " + at .*\n" -> ""
18 lines
538 B
Plaintext
18 lines
538 B
Plaintext
error: expected one of `->`, `where`, or `{`, found `<eof>`
|
|
--> $DIR/ice-bug-report-url.rs:13:10
|
|
|
|
|
LL | fn wrong()
|
|
| ^ expected one of `->`, `where`, or `{`
|
|
|
|
thread panicked at 'aborting due to `-Z treat-err-as-bug`'
|
|
stack backtrace:
|
|
|
|
error: the compiler unexpectedly panicked. this is a bug.
|
|
|
|
note: we would appreciate a bug report: https://github.com/rust-lang/rust/issues/new?labels=C-bug%2C+I-ICE%2C+T-rustdoc&template=ice.md
|
|
|
|
note: rustc {version} running on {platform}
|
|
|
|
query stack during panic:
|
|
end of query stack
|