2018-05-16 16:55:21 +00:00
|
|
|
set -ex
|
2018-07-28 10:14:35 +00:00
|
|
|
|
|
|
|
echo "Running clippy base tests"
|
|
|
|
|
2018-05-16 07:10:35 +00:00
|
|
|
PATH=$PATH:./node_modules/.bin
|
2018-10-12 05:59:08 +00:00
|
|
|
if [ "$TRAVIS_OS_NAME" == "linux" ]; then
|
|
|
|
remark -f *.md > /dev/null
|
|
|
|
fi
|
2018-07-28 10:14:35 +00:00
|
|
|
# build clippy in debug mode and run tests
|
2018-05-16 07:10:35 +00:00
|
|
|
cargo build --features debugging
|
|
|
|
cargo test --features debugging
|
2018-12-09 21:47:22 +00:00
|
|
|
# for faster build, share target dir between subcrates
|
|
|
|
export CARGO_TARGET_DIR=`pwd`/target/
|
2018-08-29 02:32:20 +00:00
|
|
|
cd clippy_lints && cargo test && cd ..
|
2018-09-07 17:06:02 +00:00
|
|
|
cd rustc_tools_util && cargo test && cd ..
|
2018-11-03 09:58:45 +00:00
|
|
|
cd clippy_dev && cargo test && cd ..
|
2018-11-04 08:41:28 +00:00
|
|
|
|
2018-12-14 20:43:40 +00:00
|
|
|
# make sure clippy can be called via ./path/to/cargo-clippy
|
|
|
|
cd clippy_workspace_tests
|
|
|
|
../target/debug/cargo-clippy
|
|
|
|
cd ..
|
|
|
|
|
2018-11-04 08:41:28 +00:00
|
|
|
# Perform various checks for lint registration
|
|
|
|
./util/dev update_lints --check
|
2018-11-27 20:11:05 +00:00
|
|
|
cargo +nightly fmt --all -- --check
|
2018-12-09 21:06:29 +00:00
|
|
|
|
|
|
|
# make sure tests are formatted
|
|
|
|
|
|
|
|
# some lints are sensitive to formatting, exclude some files
|
2018-12-27 15:17:45 +00:00
|
|
|
tests_need_reformatting="false"
|
2018-12-27 11:16:08 +00:00
|
|
|
# switch to nightly
|
|
|
|
rustup default nightly
|
2018-12-27 11:40:07 +00:00
|
|
|
# avoid loop spam and allow cmds with exit status != 0
|
|
|
|
set +ex
|
|
|
|
|
2018-12-10 14:46:01 +00:00
|
|
|
for file in `find tests -not -path "tests/ui/methods.rs" -not -path "tests/ui/format.rs" -not -path "tests/ui/formatting.rs" -not -path "tests/ui/empty_line_after_outer_attribute.rs" -not -path "tests/ui/double_parens.rs" -not -path "tests/ui/doc.rs" -not -path "tests/ui/unused_unit.rs" | grep "\.rs$"` ; do
|
2018-12-27 11:40:07 +00:00
|
|
|
rustfmt ${file} --check
|
|
|
|
if [ $? -ne 0 ]; then
|
|
|
|
echo "${file} needs reformatting!"
|
2018-12-27 15:17:45 +00:00
|
|
|
tests_need_reformatting="true"
|
2018-12-27 11:40:07 +00:00
|
|
|
fi
|
2018-12-09 21:06:29 +00:00
|
|
|
done
|
|
|
|
|
2018-12-27 11:40:07 +00:00
|
|
|
set -ex # reset
|
|
|
|
|
2018-12-27 15:17:45 +00:00
|
|
|
if [ "${tests_need_reformatting}" == "true" ] ; then
|
2018-12-10 05:27:19 +00:00
|
|
|
echo "Tests need reformatting!"
|
2018-12-09 21:06:29 +00:00
|
|
|
exit 2
|
|
|
|
fi
|
2018-12-27 11:40:07 +00:00
|
|
|
|
|
|
|
# switch back to master
|
|
|
|
rustup default master
|