Run compiletest tests on CI

I was assuming that https://github.com/rust-lang/rust/pull/56792 would
have resulted in compiletest tests being executed in CI. However, I
couldn't find any mentions of the unit test names in any CI logs.

This adds the compiletest test execution to the checktools.sh script.
This commit is contained in:
Philipp Hansch 2018-12-20 16:03:49 +01:00
parent 748d354af3
commit 2d2435b47e
No known key found for this signature in database
GPG key ID: B6FA06A6E0E2665B

View file

@ -37,6 +37,11 @@ python2.7 "$X_PY" test --no-fail-fast \
src/tools/rls \
src/tools/rustfmt \
src/tools/miri \
src/tools/compiletest
# Note that compiletest here is an exception from the other tools.
# We are only executing the unit tests of it. We don't need to track the
# toolstate because it's not distributed as a tool like the other items.
set -e