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