diff options
| author | bors <bors@rust-lang.org> | 2024-04-16 19:48:30 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2024-04-16 19:48:30 +0000 |
| commit | 719799028ad8c2dedccf3854db7d79fa5c852f84 (patch) | |
| tree | 23a42327083c6a89986b4ab35074ac174db17f6c | |
| parent | fee494b2b283c4cdcc816b2723fc8d9ee6e0dedd (diff) | |
| parent | a7db62810ee19463b3fc22bd88bad3433b389757 (diff) | |
| download | rust-719799028ad8c2dedccf3854db7d79fa5c852f84.tar.gz rust-719799028ad8c2dedccf3854db7d79fa5c852f84.zip | |
Auto merge of #3477 - RalfJung:win-no-std, r=RalfJung
no_std works on Windows now Since we now properly support the magic linker section for TLS dtors, the no_std test works on Windows.
| -rw-r--r-- | src/tools/miri/tests/fail/panic/no_std.rs | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/tools/miri/tests/fail/panic/no_std.rs b/src/tools/miri/tests/fail/panic/no_std.rs index bad425804dc..26cc0b27821 100644 --- a/src/tools/miri/tests/fail/panic/no_std.rs +++ b/src/tools/miri/tests/fail/panic/no_std.rs @@ -1,10 +1,6 @@ #![feature(start, core_intrinsics)] #![no_std] //@compile-flags: -Cpanic=abort -// windows tls dtors go through libstd right now, thus this test -// cannot pass. When windows tls dtors go through the special magic -// windows linker section, we can run this test on windows again. -//@ignore-target-windows: no-std not supported on Windows // Plumbing to let us use `writeln!` to host stderr: |
