mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-24 05:33:27 +00:00
Early exit in integration tests
This commit is contained in:
parent
add2c6cff1
commit
53f14abe1f
1 changed files with 10 additions and 5 deletions
|
@ -14,16 +14,21 @@ cargo install --force --debug --path .
|
||||||
echo "Running integration test for crate ${INTEGRATION}"
|
echo "Running integration test for crate ${INTEGRATION}"
|
||||||
|
|
||||||
git clone --depth=1 "https://github.com/${INTEGRATION}.git" checkout
|
git clone --depth=1 "https://github.com/${INTEGRATION}.git" checkout
|
||||||
cd checkout || exit 1
|
cd checkout
|
||||||
|
|
||||||
# run clippy on a project, try to be verbose and trigger as many warnings as possible for greater coverage
|
# run clippy on a project, try to be verbose and trigger as many warnings
|
||||||
|
# as possible for greater coverage
|
||||||
RUST_BACKTRACE=full \
|
RUST_BACKTRACE=full \
|
||||||
cargo clippy \
|
cargo clippy \
|
||||||
--all-targets \
|
--all-targets \
|
||||||
--all-features \
|
--all-features \
|
||||||
-- --cap-lints warn -W clippy::pedantic -W clippy::nursery \
|
-- \
|
||||||
2>& 1 \
|
--cap-lints warn \
|
||||||
| tee clippy_output
|
-W clippy::pedantic \
|
||||||
|
-W clippy::nursery \
|
||||||
|
> clippy_output 2>&1 || true
|
||||||
|
|
||||||
|
cat clippy_output
|
||||||
|
|
||||||
if grep -q "internal compiler error\|query stack during panic\|E0463" clippy_output; then
|
if grep -q "internal compiler error\|query stack during panic\|E0463" clippy_output; then
|
||||||
exit 1
|
exit 1
|
||||||
|
|
Loading…
Reference in a new issue