about summary refs log tree commit diff
diff options
context:
space:
mode:
authorCorey Richardson <corey@octayn.net>2014-07-21 19:26:20 -0700
committerCorey Richardson <corey@octayn.net>2014-07-21 19:26:20 -0700
commit857bb60fe01272c338c5f89912561bdf147af94a (patch)
tree76f22d139b1f83468e8df6aff8b752b634ebe181
parent35c0bf32926ec8095a7ca5b5b77e612c15ddf098 (diff)
downloadrust-857bb60fe01272c338c5f89912561bdf147af94a.tar.gz
rust-857bb60fe01272c338c5f89912561bdf147af94a.zip
Don't run lexer tests by default
-rw-r--r--mk/tests.mk2
-rw-r--r--src/grammar/README.md5
2 files changed, 4 insertions, 3 deletions
diff --git a/mk/tests.mk b/mk/tests.mk
index 6068af8f7f4..2e500ffeb0a 100644
--- a/mk/tests.mk
+++ b/mk/tests.mk
@@ -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
diff --git a/src/grammar/README.md b/src/grammar/README.md
index 69f8ab1e486..f5b872cdc7f 100644
--- a/src/grammar/README.md
+++ b/src/grammar/README.md
@@ -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