2018-10-06 11:23:54 -05:00
|
|
|
# Copyright 2014-2018 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
# file at the top-level directory of this distribution and at
|
|
|
|
# http://rust-lang.org/COPYRIGHT.
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
# <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
# option. This file may not be copied, modified, or distributed
|
|
|
|
# except according to those terms.
|
|
|
|
|
|
|
|
|
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
|
2018-10-12 00:59:08 -05:00
|
|
|
if [ "$TRAVIS_OS_NAME" == "linux" ]; then
|
|
|
|
remark -f *.md > /dev/null
|
|
|
|
fi
|
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-09-19 00:04:38 -05:00
|
|
|
# check that the lint lists are up-to-date
|
|
|
|
./util/update_lints.py -c
|
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-11 18:33:28 -05:00
|
|
|
PATH=$PATH:~/rust/cargo/bin cargo clippy --all-targets --all-features -- -D clippy::all -D clippy::internal
|
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
|