Using an unmodified profile = "compiler" build on aarch64 macOS (14.7.1), I see the following tests fail from ./x test tests/ui/panics:
failures:
[ui] tests/ui/panics/issue-47429-short-backtraces.rs
[ui] tests/ui/panics/runtime-switch.rs
[ui] tests/ui/panics/short-ice-remove-middle-frames-2.rs
[ui] tests/ui/panics/short-ice-remove-middle-frames.rs
All of the failure diffs look something like this:
diff of run.stderr:
1 thread 'main' panicked at $DIR/issue-47429-short-backtraces.rs:24:5:
2 explicit panic
3 stack backtrace:
- 0: std::panicking::begin_panic
+ 0: begin_panic<&str>
5 1: issue_47429_short_backtraces::main
6 note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace.
7
The actual run.stderr differed from the expected run.stderr.
I see the same failures with --stage=1 and --stage=2.
Not sure if this is a test output normalization problem, or an actual bug.
Discussion elsewhere indicates that this might be related to #123244.
Using an unmodified
profile = "compiler"build on aarch64 macOS (14.7.1), I see the following tests fail from./x test tests/ui/panics:All of the failure diffs look something like this:
I see the same failures with
--stage=1and--stage=2.Not sure if this is a test output normalization problem, or an actual bug.
Discussion elsewhere indicates that this might be related to #123244.