Skip to content

Commit ac635aa

Browse files
authored
Auto merge of #37867 - brson:no-lexer-verify, r=alexcrichton
Don't build the lexer verifier during tidy Tidy is not the right place to do this. Tidy is for running lints. We should instead be running the lexer/grammar tests as part of the test suite. This may fix nightly breakage, but I don't understand why. https://buildbot.rust-lang.org/builders/nightly-dist-rustc-linux/builds/715/steps/distcheck/logs/stdio r? @alexcrichton cc @dns2utf8
2 parents b7dfc2b + d3b050c commit ac635aa

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

mk/tests.mk

+1-2
Original file line numberDiff line numberDiff line change
@@ -243,8 +243,7 @@ cleantestlibs:
243243

244244
.PHONY: tidy
245245
tidy: $(HBIN0_H_$(CFG_BUILD))/tidy$(X_$(CFG_BUILD)) \
246-
$(SNAPSHOT_RUSTC_POST_CLEANUP) \
247-
check-build-lexer-verifier
246+
$(SNAPSHOT_RUSTC_POST_CLEANUP)
248247
$(TARGET_RPATH_VAR0_T_$(CFG_BUILD)_H_$(CFG_BUILD)) $< $(S)src
249248

250249
$(HBIN0_H_$(CFG_BUILD))/tidy$(X_$(CFG_BUILD)): \

0 commit comments

Comments
 (0)