about summary refs log tree commit diff
path: root/src/tools/miri/tests/fail/panic/no_std.rs
AgeCommit message (Collapse)AuthorLines
2025-01-21remove support for the #[start] attributeRalf Jung-3/+4
2024-04-17tests/utils: add fmt::Write implementations for miri's native stdout/stderrRalf Jung-20/+4
2024-04-16no_std works on Windows nowRalf Jung-4/+0
2024-03-09simplify no-std testsRalf Jung-4/+2
set panic=abort so that we do not need this eh_personality thing
2022-10-28update ignore-windows commentsRalf Jung-1/+1
2022-10-19Magic functions for writing to stdout/stderr.Cliff L. Biffle-0/+41
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.