mirror of https://github.com/rust-lang/rust.git
Don't run lexer tests by default
This commit is contained in:
parent
35c0bf3292
commit
857bb60fe0
|
@ -171,7 +171,7 @@ endif
|
|||
# Main test targets
|
||||
######################################################################
|
||||
|
||||
check: cleantmptestlogs cleantestlibs check-notidy tidy check-syntax
|
||||
check: cleantmptestlogs cleantestlibs check-notidy tidy
|
||||
|
||||
check-notidy: cleantmptestlogs cleantestlibs all check-stage2
|
||||
$(Q)$(CFG_PYTHON) $(S)src/etc/check-summary.py tmp/*.log
|
||||
|
|
|
@ -1,9 +1,10 @@
|
|||
Reference grammar.
|
||||
|
||||
Uses [antlr4](http://www.antlr.org/) and a custom Rust tool to compare
|
||||
ASTs/token streams generated.
|
||||
ASTs/token streams generated. You can use the `check-syntax` make target to
|
||||
run all of the available tests.
|
||||
|
||||
To use:
|
||||
To use manually:
|
||||
|
||||
```
|
||||
antlr4 RustLexer.g4
|
||||
|
|
Loading…
Reference in New Issue