mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-15 05:26:47 +00:00
mk: Add comments to primary check targets
This commit is contained in:
parent
80b93a3b85
commit
71f8db5b62
14
mk/tests.mk
14
mk/tests.mk
@ -171,33 +171,43 @@ endif
|
||||
# Main test targets
|
||||
######################################################################
|
||||
|
||||
# The main testing target. Tests lots of stuff.
|
||||
check: cleantmptestlogs cleantestlibs check-notidy tidy
|
||||
|
||||
# As above but don't bother running tidy.
|
||||
check-notidy: cleantmptestlogs cleantestlibs all check-stage2
|
||||
$(Q)$(CFG_PYTHON) $(S)src/etc/check-summary.py tmp/*.log
|
||||
|
||||
# A slightly smaller set of tests for smoke testing.
|
||||
check-lite: cleantestlibs cleantmptestlogs \
|
||||
$(foreach crate,$(TEST_TARGET_CRATES),check-stage2-$(crate)) \
|
||||
check-stage2-rpass \
|
||||
check-stage2-rfail check-stage2-cfail check-stage2-rmake
|
||||
$(Q)$(CFG_PYTHON) $(S)src/etc/check-summary.py tmp/*.log
|
||||
|
||||
# Only check the 'reference' tests: rpass/cfail/rfail/rmake.
|
||||
check-ref: cleantestlibs cleantmptestlogs check-stage2-rpass \
|
||||
check-stage2-rfail check-stage2-cfail check-stage2-rmake
|
||||
$(Q)$(CFG_PYTHON) $(S)src/etc/check-summary.py tmp/*.log
|
||||
|
||||
# Only check the docs.
|
||||
check-docs: cleantestlibs cleantmptestlogs check-stage2-docs
|
||||
$(Q)$(CFG_PYTHON) $(S)src/etc/check-summary.py tmp/*.log
|
||||
|
||||
# NOTE: Remove after reprogramming windows bots
|
||||
check-fast: check-lite
|
||||
|
||||
check-all: check check-secondary
|
||||
|
||||
# Some less critical tests that are not prone to breakage.
|
||||
# Not run as part of the normal test suite, but tested by bors on checkin.
|
||||
check-secondary: check-syntax check-pretty
|
||||
|
||||
# check + check-secondary.
|
||||
check-all: check check-secondary
|
||||
|
||||
# Run the grammar tests.
|
||||
check-syntax: check-lexer
|
||||
|
||||
# Pretty-printing tests.
|
||||
check-pretty: check-stage2-T-$(CFG_BUILD)-H-$(CFG_BUILD)-pretty-exec
|
||||
|
||||
.PHONY: cleantmptestlogs cleantestlibs
|
||||
|
Loading…
Reference in New Issue
Block a user