about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2018-07-27 15:36:13 +0200
committerMatthias Krüger <matthias.krueger@famsik.de>2018-07-30 00:11:58 +0200
commite0214397bdf0d48b7dcd520cd075d3a22092d823 (patch)
tree9f5cb68051a6c20ad9bee93018b6ba2e46c1e0f6
parent4010788b3a0a7c2add7187c1e0021454c3331f25 (diff)
downloadrust-e0214397bdf0d48b7dcd520cd075d3a22092d823.tar.gz
rust-e0214397bdf0d48b7dcd520cd075d3a22092d823.zip
travis: run tests of external projects with --all-targets --all-features -- --cap-lints warn
-rwxr-xr-xci/base-tests.sh2
-rwxr-xr-xci/integration-tests.sh4
2 files changed, 3 insertions, 3 deletions
diff --git a/ci/base-tests.sh b/ci/base-tests.sh
index 4b304f6f2a6..69cd5abd925 100755
--- a/ci/base-tests.sh
+++ b/ci/base-tests.sh
@@ -7,7 +7,7 @@ mkdir -p ~/rust/cargo/bin
 cp target/debug/cargo-clippy ~/rust/cargo/bin/cargo-clippy
 cp target/debug/clippy-driver ~/rust/cargo/bin/clippy-driver
 rm ~/.cargo/bin/cargo-clippy
-PATH=$PATH:~/rust/cargo/bin cargo clippy --all -- -D clippy
+PATH=$PATH:~/rust/cargo/bin cargo clippy --all-targets --all-features -- --cap-lints warn -D clippy
 cd clippy_workspace_tests && PATH=$PATH:~/rust/cargo/bin cargo clippy -- -D clippy && cd ..
 cd clippy_workspace_tests/src && PATH=$PATH:~/rust/cargo/bin cargo clippy -- -D clippy && cd ../..
 cd clippy_workspace_tests/subcrate && PATH=$PATH:~/rust/cargo/bin cargo clippy -- -D clippy && cd ../..
diff --git a/ci/integration-tests.sh b/ci/integration-tests.sh
index a989b261ac7..67ace0b5c88 100755
--- a/ci/integration-tests.sh
+++ b/ci/integration-tests.sh
@@ -8,9 +8,9 @@ git clone --depth=1 https://github.com/${INTEGRATION}.git checkout
 cd checkout
 
 function check() {
-  RUST_BACKTRACE=full cargo clippy --all &> clippy_output
+  RUST_BACKTRACE=full cargo clippy --all-targets --all-features -- --cap-lints warn &> clippy_output
   cat clippy_output
-  ! cat clippy_output | grep -q "internal compiler error"
+  ! cat clippy_output | grep -q "internal compiler error\|query stack during panic"
   if [[ $? != 0 ]]; then
     return 1
   fi