File tree 2 files changed +5
-1
lines changed
2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -234,7 +234,8 @@ jobs:
234
234
- ' rust-lang/cargo'
235
235
- ' rust-lang/rls'
236
236
- ' rust-lang/chalk'
237
- - ' rust-lang/rustfmt'
237
+ # FIXME: Disabled until https://github.com/rust-lang/rust/issues/71077 is fixed
238
+ # - 'rust-lang/rustfmt'
238
239
- ' Marwes/combine'
239
240
- ' Geal/nom'
240
241
- ' rust-lang/stdarch'
Original file line number Diff line number Diff line change @@ -64,6 +64,9 @@ fn integration_test() {
64
64
} else if stderr. contains ( "query stack during panic" ) {
65
65
panic ! ( "query stack during panic in the output" ) ;
66
66
} else if stderr. contains ( "E0463" ) {
67
+ // Encountering E0463 (can't find crate for `x`) did _not_ cause the build to fail in the
68
+ // past. Even though it should have. That's why we explicitly panic here.
69
+ // See PR #3552 and issue #3523 for more background.
67
70
panic ! ( "error: E0463" ) ;
68
71
} else if stderr. contains ( "E0514" ) {
69
72
panic ! ( "incompatible crate versions" ) ;
You can’t perform that action at this time.
0 commit comments