Skip to content

Commit 691e5e7

Browse files
committed
Auto merge of rust-lang#3552 - phansch:make_integration_tests_fail_again, r=oli-obk
Make integration tests fail on 'E0463' cc rust-lang#3523
2 parents 980bcd8 + abab181 commit 691e5e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ci/integration-tests.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ function check() {
2121
# run clippy on a project, try to be verbose and trigger as many warnings as possible for greater coverage
2222
RUST_BACKTRACE=full cargo clippy --all-targets --all-features -- --cap-lints warn -W clippy::pedantic -W clippy::nursery &> clippy_output
2323
cat clippy_output
24-
! cat clippy_output | grep -q "internal compiler error\|query stack during panic"
24+
! cat clippy_output | grep -q "internal compiler error\|query stack during panic\|E0463"
2525
if [[ $? != 0 ]]; then
2626
return 1
2727
fi

0 commit comments

Comments
 (0)