about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hansch <dev@phansch.net>2018-12-14 21:47:02 +0100
committerPhilipp Hansch <dev@phansch.net>2018-12-14 22:09:12 +0100
commitabab181984e81e89a1924d2736ecbdc86d765d7c (patch)
tree891aa149342af358a4b558cf5614fda8e7cd472a
parenta416c5e0f7c4c9473069a58410d3ec3e86b1ac0d (diff)
downloadrust-abab181984e81e89a1924d2736ecbdc86d765d7c.tar.gz
rust-abab181984e81e89a1924d2736ecbdc86d765d7c.zip
Make integration tests fail on 'E0463'
-rwxr-xr-xci/integration-tests.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/integration-tests.sh b/ci/integration-tests.sh
index 75decab940e..bf43d5b6811 100755
--- a/ci/integration-tests.sh
+++ b/ci/integration-tests.sh
@@ -21,7 +21,7 @@ function check() {
 # run clippy on a project, try to be verbose and trigger as many warnings as possible for greater coverage
   RUST_BACKTRACE=full cargo clippy --all-targets --all-features -- --cap-lints warn -W clippy::pedantic -W clippy::nursery  &> clippy_output
   cat clippy_output
-  ! cat clippy_output | grep -q "internal compiler error\|query stack during panic"
+  ! cat clippy_output | grep -q "internal compiler error\|query stack during panic\|E0463"
   if [[ $? != 0 ]]; then
     return 1
   fi