Don't run lexer tests by default

This commit is contained in:
Corey Richardson 2014-07-21 19:26:20 -07:00
parent 35c0bf3292
commit 857bb60fe0
2 changed files with 4 additions and 3 deletions

View File

@ -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

View File

@ -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