Skip to content
Merged
Changes from 2 commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
cdeca5c
fix Zip unsoundness (again)
the8472 Apr 30, 2025
61c2c12
add comments to Zip unsoundness regression test
the8472 Jun 4, 2025
5773d38
fix: Fix TypePrintFn flag passing for autodiff codegen
KMJ-007 Jun 30, 2025
80224c3
test: Add UI tests for testing type analysis autodiff
KMJ-007 Jun 13, 2025
0a71873
panic_main.rs panic=unwind tests needs unwinding
erickt Jul 17, 2025
bf24c0d
miri sleep tests: increase slack
RalfJung Jul 17, 2025
247d4f4
Add test.
cjgillot Jul 17, 2025
c004a96
Do not check privacy for RPITIT.
cjgillot Jul 17, 2025
99507a3
update comment
lcnr Jul 18, 2025
9e4f777
bootstrap: Detect musl hosts
Gelbpunkt Jul 17, 2025
d5411f7
Ignore tests/run-make/link-eh-frame-terminator/rmake.rs when cross-co…
Jul 18, 2025
3b9c16b
Be a bit more careful around exotic cycles in in the inliner
compiler-errors Jul 9, 2025
c58e0bd
rename `emit_unless` to `emit_unless_delay`
xizheyin Jul 18, 2025
fff53f1
Rollup merge of #141076 - the8472:fix-zip-panic-safety2, r=workingjub…
matthiaskrgr Jul 19, 2025
44ee51d
Rollup merge of #142444 - KMJ-007:autodiff-codegen-test, r=ZuseZ4
matthiaskrgr Jul 19, 2025
3b4d79c
Rollup merge of #143704 - compiler-errors:cycle-exotic, r=cjgillot
matthiaskrgr Jul 19, 2025
5e2416f
Rollup merge of #144073 - erickt:ignore-test-on-fuchsia, r=lqd
matthiaskrgr Jul 19, 2025
17e2d69
Rollup merge of #144083 - RalfJung:miri-sleep, r=oli-obk
matthiaskrgr Jul 19, 2025
870d429
Rollup merge of #144092 - Gelbpunkt:musl-stage0, r=Kobzol
matthiaskrgr Jul 19, 2025
4b94717
Rollup merge of #144098 - cjgillot:lint-rpitit, r=compiler-errors
matthiaskrgr Jul 19, 2025
bd23cd6
Rollup merge of #144103 - xizheyin:emit-unless, r=compiler-errors
matthiaskrgr Jul 19, 2025
ae77628
Rollup merge of #144108 - CaiWeiran:run-make_test, r=jieyouxu
matthiaskrgr Jul 19, 2025
cc699e1
Rollup merge of #144115 - lcnr:auto-trait-comment, r=compiler-errors
matthiaskrgr Jul 19, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions tests/ui/panics/panic-main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,15 @@

//@[unwind-zero] compile-flags: -Cpanic=unwind
//@[unwind-zero] exec-env:RUST_BACKTRACE=0
//@[unwind-zero] needs-unwind

//@[unwind-one] compile-flags: -Cpanic=unwind
//@[unwind-one] exec-env:RUST_BACKTRACE=1
//@[unwind-one] needs-unwind

//@[unwind-full] compile-flags: -Cpanic=unwind
//@[unwind-full] exec-env:RUST_BACKTRACE=full
//@[unwind-full] needs-unwind

//@ run-fail
//@ error-pattern:moop
Expand Down