2018-10-06 09:23:54 -07: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 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
2018-10-12 07:59:08 +02:00
if [ " $TRAVIS_OS_NAME " = = "linux" ] ; then
remark -f *.md > /dev/null
fi
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-28 21:32:20 -05:00
cd clippy_lints && cargo test && cd ..
2018-09-07 19:06:02 +02:00
cd rustc_tools_util && cargo test && cd ..
2018-11-03 10:58:45 +01:00
cd clippy_dev && cargo test && cd ..
2018-11-04 09:41:28 +01:00
# Perform various checks for lint registration
./util/dev update_lints --check
2018-10-26 19:58:50 +02:00
CLIPPY = "`pwd`/target/debug/cargo-clippy clippy"
2018-07-28 12:14:35 +02:00
# run clippy on its own codebase...
2018-11-02 12:12:14 +01:00
${ CLIPPY } --all-targets --all-features -- -D clippy::all -D clippy::internal -Dclippy::pedantic
2018-07-28 12:14:35 +02:00
# ... and some test directories
2018-10-26 19:58:50 +02: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 }
2018-11-02 12:12:14 +01:00
${ CLIPPY } -- -D clippy::all -D clippy::pedantic
2018-10-26 20:00:49 +02:00
cd -
2018-10-26 19:58:50 +02:00
done
2018-09-06 08:19:47 +02:00
2018-07-28 12:14:35 +02:00
# test --manifest-path
2018-10-26 19:58:50 +02: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 21:40:23 +02:00
set +x