Skip to content

Commit d3b050c

Browse files
committed
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 know why.
1 parent 195c42c commit d3b050c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

mk/tests.mk

Lines changed: 1 addition & 2 deletions
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)