Skip to content

Commit

Permalink
Try with this combination
Browse files Browse the repository at this point in the history
  • Loading branch information
mejrs committed Oct 8, 2022
1 parent a0ca6b3 commit 09ca410
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tests/test_compile_error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,11 @@ fn _test_compile_errors() {
t.compile_fail("tests/ui/invalid_pymethod_receiver.rs");
// Avoid `"and X others" from mismatching
// by only running this for some configurations
if cfg!(all(target_os = "linux", not(feature = "full"))) {
if cfg!(all(
target_os = "linux",
feature = "full",
not(feature = "abi3")
)) {
t.compile_fail("tests/ui/missing_intopy.rs");
}
}
Expand Down

0 comments on commit 09ca410

Please sign in to comment.