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-11-03 04:58:45 -05:00
|
|
|
cd clippy_dev && cargo test && cd ..
|
2018-11-04 02:41:28 -06:00
|
|
|
|
|
|
|
# Perform various checks for lint registration
|
|
|
|
./util/dev update_lints --check
|
2018-11-27 14:11:05 -06:00
|
|
|
cargo +nightly fmt --all -- --check
|
2018-12-09 15:06:29 -06:00
|
|
|
|
|
|
|
# make sure tests are formatted
|
|
|
|
|
|
|
|
# some lints are sensitive to formatting, exclude some files
|
|
|
|
needs_formatting=false
|
|
|
|
for file in `find tests -not -path "tests/ui/methods.rs" -not -path "tests/ui/format.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
|
|
|
|
rustfmt ${file} --check || echo "${file} needs reformatting!" ; needs_formatting=true
|
|
|
|
done
|
|
|
|
|
|
|
|
if $needs_reformatting
|
|
|
|
"Tests need reformatting!"
|
|
|
|
exit 2
|
|
|
|
fi
|