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-10-26 12:58:50 -05:00
CLIPPY = "`pwd`/target/debug/cargo-clippy clippy"
2018-07-28 05:14:35 -05:00
# run clippy on its own codebase...
2018-10-26 12:58:50 -05:00
${ CLIPPY } --all-targets --all-features -- -D clippy::all -D clippy::internal
2018-07-28 05:14:35 -05:00
# ... and some test directories
2018-10-26 12:58:50 -05:00
for dir in clippy_workspace_tests clippy_workspace_tests/src clippy_workspace_tests/subcrate clippy_workspace_tests/subcrate/src clippy_dev rustc_tools_util
do
cd ${ dir }
${ CLIPPY } -- -D clippy::all
2018-10-26 13:00:49 -05:00
cd -
2018-10-26 12:58:50 -05:00
done
2018-09-06 01:19:47 -05:00
2018-07-28 05:14:35 -05:00
# test --manifest-path
2018-10-26 12:58:50 -05:00
${ CLIPPY } --manifest-path= clippy_workspace_tests/Cargo.toml -- -D clippy::all
cd clippy_workspace_tests/subcrate && ${ CLIPPY } --manifest-path= ../Cargo.toml -- -D clippy::all && cd ../..
2018-05-17 14:40:23 -05:00
set +x