2018-05-16 18:55:21 +02:00
|
|
|
set -ex
|
2018-07-28 12:14:35 +02:00
|
|
|
|
|
|
|
echo "Running clippy base tests"
|
|
|
|
|
2018-05-16 09:10:35 +02:00
|
|
|
PATH=$PATH:./node_modules/.bin
|
|
|
|
remark -f *.md > /dev/null
|
2018-07-28 12:14:35 +02:00
|
|
|
# build clippy in debug mode and run tests
|
2018-05-16 09:10:35 +02:00
|
|
|
cargo build --features debugging
|
|
|
|
cargo test --features debugging
|
2018-08-29 04:32:20 +02:00
|
|
|
cd clippy_lints && cargo test && cd ..
|
2018-05-16 09:10:35 +02:00
|
|
|
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
|
2018-07-16 22:55:32 +02:00
|
|
|
rm ~/.cargo/bin/cargo-clippy
|
2018-07-28 12:14:35 +02:00
|
|
|
# run clippy on its own codebase...
|
2018-09-03 08:03:05 +02:00
|
|
|
PATH=$PATH:~/rust/cargo/bin cargo clippy --all-targets --all-features -- -D clippy::all
|
2018-07-28 12:14:35 +02:00
|
|
|
# ... and some test directories
|
2018-09-03 08:03:05 +02:00
|
|
|
cd clippy_workspace_tests && PATH=$PATH:~/rust/cargo/bin cargo clippy -- -D clippy::all && cd ..
|
|
|
|
cd clippy_workspace_tests/src && PATH=$PATH:~/rust/cargo/bin cargo clippy -- -D clippy::all && cd ../..
|
|
|
|
cd clippy_workspace_tests/subcrate && PATH=$PATH:~/rust/cargo/bin cargo clippy -- -D clippy::all && cd ../..
|
|
|
|
cd clippy_workspace_tests/subcrate/src && PATH=$PATH:~/rust/cargo/bin cargo clippy -- -D clippy::all && cd ../../..
|
2018-07-28 12:14:35 +02:00
|
|
|
# test --manifest-path
|
2018-09-03 08:03:05 +02:00
|
|
|
PATH=$PATH:~/rust/cargo/bin cargo clippy --manifest-path=clippy_workspace_tests/Cargo.toml -- -D clippy::all
|
|
|
|
cd clippy_workspace_tests/subcrate && PATH=$PATH:~/rust/cargo/bin cargo clippy --manifest-path=../Cargo.toml -- -D clippy::all && cd ../..
|
2018-05-17 21:40:23 +02:00
|
|
|
set +x
|