| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2025-09-02 | improve process::abort rendering in Miri backtraces | Ralf Jung | -45/+23 | |
| 2025-08-07 | Rollup merge of #144903 - Kivooeo:panic_handler-is-not-begin, r=m-ou-se | Trevor Gross | -12/+12 | |
| Rename `begin_panic_handler` to `panic_handler` Part of https://github.com/rust-lang/rust/issues/116005 | ||||
| 2025-08-06 | Print thread ID in panic message if thread name is unknown | Trevor Gross | -12/+12 | |
| `panic!` does not print any identifying information for threads that are unnamed. However, in many cases, the thread ID can be determined. This changes the panic message from something like this: thread '<unnamed>' panicked at src/main.rs:3:5: explicit panic To something like this: thread '<unnamed>' (0xff9bf) panicked at src/main.rs:3:5: explicit panic Stack overflow messages are updated as well. This change applies to both named and unnamed threads. The ID printed is the OS integer thread ID rather than the Rust thread ID, which should also be what debuggers print. | ||||
| 2025-08-04 | remove begin prefix | Kivooeo | -12/+12 | |
| 2025-08-03 | remove rust_ prefixes | Kivooeo | -6/+6 | |
| 2025-06-07 | diagnostics: do not repeat the entire message in the span label | Ralf Jung | -9/+9 | |
| 2025-05-24 | rename internal panicking::try to catch_unwind | Ralf Jung | -2/+2 | |
| 2025-05-15 | normalize abort calls in miri tests | joboet | -20/+28 | |
| 2025-04-18 | rtprintpanic: clarify that the error is aborting the process | Lieselotte | -2/+2 | |
| 2025-03-14 | Do not suggest using `-Zmacro-backtrace` for builtin macros | Esteban Küber | -5/+0 | |
| For macros that are implemented on the compiler, we do *not* mention the `-Zmacro-backtrace` flag. This includes `derive`s and standard macros. | ||||
| 2025-02-14 | Bless miri tests after applying unsafe_op_in_unsafe_fn | Eric Huss | -4/+4 | |
| 2025-01-21 | remove support for the #[start] attribute | Ralf Jung | -4/+5 | |
| 2025-01-01 | Try to write the panic message with a single `write_all` call | John Kåre Alsaker | -0/+12 | |
| 2024-09-23 | add test for new abort_unwind function | Ralf Jung | -0/+44 | |
| 2024-09-16 | Bump ui test | Oli Scherer | -26/+26 | |
| 2024-08-24 | panicking: improve hint for Miri's RUST_BACKTRACE behavior | Ralf Jung | -6/+6 | |
| 2024-06-19 | Remove c_unwind from tests and fix tests | Gary Guo | -2/+0 | |
| 2024-06-16 | std: move `sys_common::backtrace` to `sys` | joboet | -5/+5 | |
| 2024-04-20 | Merge from rustc | The Miri Cronjob Bot | -0/+6 | |
| 2024-04-18 | when suggesting RUST_BACKTRACE=1, add a special note for Miri's env var ↵ | Ralf Jung | -0/+6 | |
| isolation | ||||
| 2024-04-17 | tests/utils: add fmt::Write implementations for miri's native stdout/stderr | Ralf Jung | -20/+4 | |
| 2024-04-16 | no_std works on Windows now | Ralf Jung | -4/+0 | |
| 2024-03-09 | simplify no-std tests | Ralf Jung | -4/+2 | |
| set panic=abort so that we do not need this eh_personality thing | ||||
| 2024-03-02 | remove the ability to disable ABI checking | Ralf Jung | -29/+3 | |
| 2024-03-02 | print thread name in miri error backtraces | Ralf Jung | -0/+6 | |
| 2024-02-26 | miri: rename miri_start_panic → miri_start_unwind | Ralf Jung | -10/+10 | |
| 2024-01-11 | std: update miri tests | joboet | -2/+2 | |
| 2023-11-24 | Bless Miri tests | Nilstrieb | -11/+11 | |
| Co-authored-by: Adrian <adrian.iosdev@gmail.com> | ||||
| 2023-11-12 | more consistent naming for TLS tests | Ralf Jung | -2/+2 | |
| 2023-09-23 | Merge from rustc | The Miri Conjob Bot | -8/+8 | |
| 2023-09-21 | adjust how closure/generator types and rvalues are printed | Ralf Jung | -8/+8 | |
| 2023-09-21 | deprecate -Zmiri-disable-abi-check | Ralf Jung | -0/+2 | |
| 2023-08-29 | Merge from rustc | The Miri Conjob Bot | -2/+1 | |
| 2023-08-27 | avoid triple-backtrace due to panic-during-cleanup | Ralf Jung | -2/+1 | |
| 2023-08-26 | Merge from rustc | The Miri Conjob Bot | -2/+2 | |
| 2023-08-24 | when terminating during unwinding, show the reason why | Ralf Jung | -2/+2 | |
| 2023-08-22 | fix some bad regex capture group references in test normalization | Ralf Jung | -2/+2 | |
| 2023-08-20 | interpret/miri: call panic_cannot_unwind lang item instead of hard-coding ↵ | Ralf Jung | -6/+21 | |
| the same message | ||||
| 2023-07-29 | Fix test output. | Mara Bos | -2/+4 | |
| 2023-07-29 | Change default panic handler message format. | Mara Bos | -8/+16 | |
| 2023-06-16 | make test work cross-platform | Ralf Jung | -31/+10 | |
| 2023-06-16 | add tests for panicky drop in thread_local destructor | Ralf Jung | -0/+75 | |
| 2023-05-27 | Add support for nested panics to miri | Amanieu d'Antras | -23/+9 | |
| 2023-05-09 | Update to latest ui_test crate version. | Oli Scherer | -5/+5 | |
| Also stops using github actions groups that conflict with our groups as github does not nest them | ||||
| 2023-05-08 | port tests to 2021 edition | Ralf Jung | -8/+10 | |
| 2023-04-24 | Hide backtrace from stderr files | Oli Scherer | -62/+2 | |
| 2022-12-06 | Reintroduce the span printing in miri (plus point to spans where possible) | Oli Scherer | -39/+39 | |
| 2022-12-06 | Remove now-redundant file/line info from const backtraces | Oli Scherer | -47/+47 | |
| 2022-10-28 | update ignore-windows comments | Ralf Jung | -1/+1 | |
| 2022-10-19 | Magic functions for writing to stdout/stderr. | Cliff L. Biffle | -0/+60 | |
| This enables I/O in no_std contexts (or, really, any Miri-specific OS-independent context). Combined with the `abort` intrinsic it should allow a reasonable test framework in no_std. | ||||
