From 6c5c835a1dccd55287bbd81564d74a009497be57 Mon Sep 17 00:00:00 2001 From: Graydon Hoare Date: Wed, 29 Aug 2012 14:32:54 -0700 Subject: [PATCH] Make check-notidy not run tidy, as implied. Close #3105. --- mk/tests.mk | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mk/tests.mk b/mk/tests.mk index 246b9f8fbd4..851c5b85d52 100644 --- a/mk/tests.mk +++ b/mk/tests.mk @@ -198,7 +198,7 @@ FULL_TEST_SREQ$(1)_T_$(2)_H_$(3) = \ $$(SREQ$(1)_T_$(2)_H_$(3)) \ $$(TLIBRUSTC_DEFAULT$(1)_T_$(2)_H_$(3)) -check-stage$(1)-T-$(2)-H-$(3): tidy \ +check-stage$(1)-T-$(2)-H-$(3): \ check-stage$(1)-T-$(2)-H-$(3)-rustc \ check-stage$(1)-T-$(2)-H-$(3)-core \ check-stage$(1)-T-$(2)-H-$(3)-std \ @@ -595,7 +595,7 @@ $(3)/test/$$(FT_DRIVER)-$(2).out: \ $$(Q)$$(call CFG_RUN_TEST,$$<,$(2),$(3)) \ --logfile tmp/$$(FT_DRIVER)-$(2).log -check-fast-T-$(2)-H-$(3): tidy \ +check-fast-T-$(2)-H-$(3): \ check-stage2-T-$(2)-H-$(3)-rustc \ check-stage2-T-$(2)-H-$(3)-core \ check-stage2-T-$(2)-H-$(3)-std \ @@ -785,4 +785,4 @@ endef $(foreach stage,$(STAGES), \ $(eval $(call DEF_CHECK_FOR_STAGE,$(stage)))) -check-fast: check-fast-H-$(CFG_HOST_TRIPLE) +check-fast: tidy check-fast-H-$(CFG_HOST_TRIPLE)