Skip to content

Commit

Permalink
Restore info about mvn -Dtest=java.** test in antlr-project-testing.md
Browse files Browse the repository at this point in the history
Fix misprint

Signed-off-by: Ivan Kochurkin <[email protected]>
  • Loading branch information
KvanTTT authored and parrt committed Jun 26, 2022
1 parent 7e8c4f4 commit ff2acb1
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions doc/antlr-project-testing.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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
...
```
Expand Down

0 comments on commit ff2acb1

Please sign in to comment.