Skip to content

Commit cd6c574

Browse files
committed
Auto merge of #108809 - lqd:fix-ignore, r=pietroalbini
fix ignore header in MSVC test From `@pietroalbini's` [zulip message](https://rust-lang.zulipchat.com/#narrow/stream/326414-t-infra.2Fbootstrap/topic/better.20compiletest.20ignore.20messages/near/339845864) > there are tests like `tests/ui/panic-runtime/unwind-tables-target-required.rs` which have `only-x86_64-windows-msvc` which I'm pretty sure is invalid This test is currently ignored on x64 MSVC CI because of this incorrect target. We'll see if it still passes. r? `@pietroalbini`
2 parents 18e305d + 956bebb commit cd6c574

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
// Tests that the compiler errors if the user tries to turn off unwind tables
22
// when they are required.
33
//
4-
// only-x86_64-windows-msvc
4+
// only-x86_64-pc-windows-msvc
55
// compile-flags: -C force-unwind-tables=no
66
//
7-
// error-pattern: target requires unwind tables, they cannot be disabled with `-C force-unwind-tables=no`.
7+
// dont-check-compiler-stderr
8+
// error-pattern: target requires unwind tables, they cannot be disabled with `-C force-unwind-tables=no`
89

910
pub fn main() {
1011
}

0 commit comments

Comments
 (0)