2018-05-09 04:57:58 -05:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
set -ex
|
|
|
|
|
|
|
|
: ${INTEGRATION?"The INTEGRATION environment variable must be set."}
|
|
|
|
|
2018-05-18 00:38:30 -05:00
|
|
|
# FIXME: this means we can get a stale cargo-fmt from a previous run.
|
2018-05-09 04:57:58 -05:00
|
|
|
#
|
|
|
|
# `which rustfmt` fails if rustfmt is not found. Since we don't install
|
|
|
|
# `rustfmt` via `rustup`, this is the case unless we manually install it. Once
|
|
|
|
# that happens, `cargo install --force` will be called, which installs
|
|
|
|
# `rustfmt`, `cargo-fmt`, etc to `~/.cargo/bin`. This directory is cached by
|
|
|
|
# travis (see `.travis.yml`'s "cache" key), such that build-bots that arrive
|
|
|
|
# here after the first installation will find `rustfmt` and won't need to build
|
|
|
|
# it again.
|
|
|
|
#
|
2018-05-18 00:38:30 -05:00
|
|
|
#which cargo-fmt || cargo install --force
|
2018-05-09 04:57:58 -05:00
|
|
|
cargo install --force
|
|
|
|
|
|
|
|
echo "Integration tests for: ${INTEGRATION}"
|
2018-05-18 00:38:30 -05:00
|
|
|
cargo fmt -- --version
|
2018-05-09 04:57:58 -05:00
|
|
|
|
2018-06-15 07:20:39 -05:00
|
|
|
# Checks that:
|
|
|
|
#
|
|
|
|
# * `cargo fmt --all` succeeds without any warnings or errors
|
|
|
|
# * `cargo fmt --all -- --check` after formatting returns success
|
2018-06-15 08:07:32 -05:00
|
|
|
# * `cargo test -all` still passes (formatting did not break the build)
|
2018-05-09 04:57:58 -05:00
|
|
|
function check_fmt {
|
2018-05-18 00:38:30 -05:00
|
|
|
touch rustfmt.toml
|
2018-06-18 02:49:17 -05:00
|
|
|
cargo fmt --all -v |& tee rustfmt_output
|
2018-06-15 08:07:32 -05:00
|
|
|
if [[ ${PIPESTATUS[0]} != 0 ]]; then
|
2018-05-15 12:55:56 -05:00
|
|
|
cat rustfmt_output
|
2018-05-09 04:57:58 -05:00
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
cat rustfmt_output
|
|
|
|
! cat rustfmt_output | grep -q "internal error"
|
|
|
|
if [[ $? != 0 ]]; then
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
! cat rustfmt_output | grep -q "warning"
|
|
|
|
if [[ $? != 0 ]]; then
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
! cat rustfmt_output | grep -q "Warning"
|
|
|
|
if [[ $? != 0 ]]; then
|
|
|
|
return 1
|
|
|
|
fi
|
2018-06-18 02:49:17 -05:00
|
|
|
cargo fmt --all -- --check |& tee rustfmt_check_output
|
2018-06-15 08:07:32 -05:00
|
|
|
if [[ ${PIPESTATUS[0]} != 0 ]]; then
|
2018-06-15 07:20:39 -05:00
|
|
|
cat rustfmt_check_output
|
|
|
|
return 1
|
|
|
|
fi
|
2018-06-15 08:07:32 -05:00
|
|
|
cargo test --all
|
|
|
|
if [[ $? != 0 ]]; then
|
|
|
|
return $?
|
|
|
|
fi
|
2018-05-09 04:57:58 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
case ${INTEGRATION} in
|
|
|
|
cargo)
|
2018-05-16 12:15:51 -05:00
|
|
|
git clone --depth=1 https://github.com/rust-lang/${INTEGRATION}.git
|
2018-05-09 04:57:58 -05:00
|
|
|
cd ${INTEGRATION}
|
|
|
|
export CFG_DISABLE_CROSS_TESTS=1
|
2018-05-18 00:38:30 -05:00
|
|
|
check_fmt
|
2018-05-09 04:57:58 -05:00
|
|
|
cd -
|
|
|
|
;;
|
2018-06-18 03:04:21 -05:00
|
|
|
chalk)
|
|
|
|
git clone --depth=1 https://github.com/rust-lang-nursery/${INTEGRATION}.git
|
|
|
|
cd ${INTEGRATION}
|
|
|
|
# Need to run build.rs once.
|
|
|
|
# See: https://github.com/rust-lang-nursery/rustfmt/issues/2789
|
|
|
|
cargo build
|
|
|
|
check_fmt
|
|
|
|
cd -
|
|
|
|
;;
|
2018-05-09 04:57:58 -05:00
|
|
|
failure)
|
2018-05-16 12:15:51 -05:00
|
|
|
git clone --depth=1 https://github.com/rust-lang-nursery/${INTEGRATION}.git
|
2018-05-09 04:57:58 -05:00
|
|
|
cd ${INTEGRATION}/failure-1.X
|
2018-05-18 00:38:30 -05:00
|
|
|
check_fmt
|
2018-05-09 04:57:58 -05:00
|
|
|
cd -
|
|
|
|
;;
|
|
|
|
*)
|
2018-05-16 12:15:51 -05:00
|
|
|
git clone --depth=1 https://github.com/rust-lang-nursery/${INTEGRATION}.git
|
2018-05-09 04:57:58 -05:00
|
|
|
cd ${INTEGRATION}
|
2018-05-18 00:38:30 -05:00
|
|
|
check_fmt
|
2018-05-09 04:57:58 -05:00
|
|
|
cd -
|
|
|
|
;;
|
|
|
|
esac
|