rust/ci/base-tests.sh

30 lines
955 B
Bash
Raw Normal View History

2018-10-06 18:23:54 +02: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.
set -ex
echo "Running clippy base tests"
2018-05-16 09:10:35 +02:00
PATH=$PATH:./node_modules/.bin
if [ "$TRAVIS_OS_NAME" == "linux" ]; then
remark -f *.md > /dev/null
fi
# build clippy in debug mode and run tests
2018-05-16 09:10:35 +02:00
cargo build --features debugging
cargo test --features debugging
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 ..
# Perform various checks for lint registration
./util/dev update_lints --check
cargo +nightly fmt --all -- --check