File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -234,7 +234,8 @@ jobs:
234234 - ' rust-lang/cargo'
235235 - ' rust-lang/rls'
236236 - ' 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'
238239 - ' Marwes/combine'
239240 - ' Geal/nom'
240241 - ' rust-lang/stdarch'
Original file line number Diff line number Diff line change @@ -64,6 +64,9 @@ fn integration_test() {
6464 } else if stderr. contains ( "query stack during panic" ) {
6565 panic ! ( "query stack during panic in the output" ) ;
6666 } 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.
6770 panic ! ( "error: E0463" ) ;
6871 } else if stderr. contains ( "E0514" ) {
6972 panic ! ( "incompatible crate versions" ) ;
You can’t perform that action at this time.
0 commit comments