diff options
| author | bors <bors@rust-lang.org> | 2016-11-18 15:04:27 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-11-18 15:04:27 -0800 |
| commit | ac635aa95ba851898e125b047ad7b8d6a8fecf8e (patch) | |
| tree | bf34dac3e9e8a50058779e5b38c1cdc556600eb4 | |
| parent | b7dfc2bd127d9a4a35c60700f89ee30dea9212f8 (diff) | |
| parent | d3b050c3084f12545a8c224f8d88813b25f46c80 (diff) | |
| download | rust-ac635aa95ba851898e125b047ad7b8d6a8fecf8e.tar.gz rust-ac635aa95ba851898e125b047ad7b8d6a8fecf8e.zip | |
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
| -rw-r--r-- | mk/tests.mk | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/mk/tests.mk b/mk/tests.mk index 9885d275e8b..35ee7697a7a 100644 --- a/mk/tests.mk +++ b/mk/tests.mk @@ -243,8 +243,7 @@ cleantestlibs: .PHONY: tidy tidy: $(HBIN0_H_$(CFG_BUILD))/tidy$(X_$(CFG_BUILD)) \ - $(SNAPSHOT_RUSTC_POST_CLEANUP) \ - check-build-lexer-verifier + $(SNAPSHOT_RUSTC_POST_CLEANUP) $(TARGET_RPATH_VAR0_T_$(CFG_BUILD)_H_$(CFG_BUILD)) $< $(S)src $(HBIN0_H_$(CFG_BUILD))/tidy$(X_$(CFG_BUILD)): \ |
