Skip to content

Commit 2a8a191

Browse files
authoredFeb 4, 2025
Rollup merge of #134777 - saethlin:enable-more-tests-on-windows, r=Noratrieb
Enable more tests on Windows As part of the discussion of rust-lang/compiler-team#822 on Zulip, it was mentioned that problems with the i686-pc-windows-gnu target may have resulted in tests being disabled on Windows. So in this PR, I've ripped out all our `//@ ignore-windows` directives, then re-added all the ones that are definitely required based on the outcome of try-builds, and in some cases I've improved the justification or tightened the directives to `//@ ignore-msvc` or ignoring specific targets.
2 parents 8a8b464 + 7dfc786 commit 2a8a191

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+41
-63
lines changed
 

‎tests/codegen/debug-column.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Verify that debuginfo column numbers are 1-based byte offsets.
22
//
3-
//@ ignore-windows
3+
//@ ignore-msvc
44
//@ compile-flags: -C debuginfo=2
55

66
#[rustfmt::skip]

‎tests/codegen/force-no-unwind-tables.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//@ compile-flags: -C no-prepopulate-passes -C panic=abort -C force-unwind-tables=n
2-
//@ ignore-windows
2+
//@ ignore-windows: unwind tables are required for panics on Windows
33

44
#![crate_type = "lib"]
55

0 commit comments

Comments
 (0)
Please sign in to comment.