File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -107,7 +107,11 @@ fn _test_compile_errors() {
107
107
t. compile_fail ( "tests/ui/invalid_pymethod_receiver.rs" ) ;
108
108
// Avoid `"and X others" from mismatching
109
109
// by only running this for some configurations
110
- if cfg ! ( all( target_os = "linux" , not( feature = "full" ) ) ) {
110
+ if cfg ! ( all(
111
+ target_os = "linux" ,
112
+ feature = "full" ,
113
+ not( feature = "abi3" )
114
+ ) ) {
111
115
t. compile_fail ( "tests/ui/missing_intopy.rs" ) ;
112
116
}
113
117
}
@@ -119,7 +123,11 @@ fn _test_compile_errors() {
119
123
fn tests_rust_1_63 ( t : & trybuild:: TestCases ) {
120
124
// Avoid `"and X others" from mismatching
121
125
// by only running this for some configurations
122
- if cfg ! ( all( target_os = "linux" , not( feature = "full" ) ) ) {
126
+ if cfg ! ( all(
127
+ target_os = "linux" ,
128
+ feature = "full" ,
129
+ not( feature = "abi3" )
130
+ ) ) {
123
131
t. compile_fail ( "tests/ui/invalid_result_conversion.rs" ) ;
124
132
}
125
133
t. compile_fail ( "tests/ui/not_send.rs" ) ;
You can’t perform that action at this time.
0 commit comments