From ff2acb19f399c882ab038bd944af1a3797b5c636 Mon Sep 17 00:00:00 2001 From: Ivan Kochurkin Date: Sun, 26 Jun 2022 22:59:26 +0300 Subject: [PATCH] Restore info about `mvn -Dtest=java.** test` in antlr-project-testing.md Fix misprint Signed-off-by: Ivan Kochurkin --- doc/antlr-project-testing.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/doc/antlr-project-testing.md b/doc/antlr-project-testing.md index a1b32949cc..840921ebe4 100644 --- a/doc/antlr-project-testing.md +++ b/doc/antlr-project-testing.md @@ -87,7 +87,7 @@ And the result of testing the entire subdirectory: All test are run in parallel both via maven and via IDE. -In IntelliJ, it's very easy to go to source by right-click on any test and pressing `Jump to source` (F4). +In IntelliJ, it's very easy to go to source by right-clicking on any test and pressing `Jump to source` (F4). ## Running test subsets @@ -98,12 +98,14 @@ From the `runtime-testsuite` dir ```bash $ cd runtime-testsuite $ export MAVEN_OPTS="-Xmx1G" # don't forget this on linux -$ mvn -Dtest=JavaRuntimeTests test +$ mvn -Dtest=java.** test ------------------------------------------------------- T E S T S ------------------------------------------------------- +[INFO] Running org.antlr.v4.test.runtime.java.TestIntegerList [INFO] Running org.antlr.v4.test.runtime.java.JavaRuntimeTests ... +[INFO] Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.023 s - in org.antlr.v4.test.runtime.java.TestIntegerList [INFO] Tests run: 348, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 19.269 s - in org.antlr.v4.test.runtime.java.JavaRuntimeTests ... ```