You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: art-comp-test/runner/README.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -38,4 +38,10 @@ With the above arguments the script will run all tests and print the results in
38
38
If you pass the argument `--port` the script will start a web server which you can access from a web browser on the specified port. For example, passing `--port=4444` makes the web server available at `http://localhost:4444/`.
39
39
By default the web server is only running while the tests execute, but you can pass `--terminateWebServer==never` if you want it to keep running also after test execution is completed. `--terminateWebServer==ifNoFailures` is another alternative in case the web server only should keep running in case one or more tests failed.
40
40
41
+
Here is an example of a complete command-line that runs the script in interactive mode by starting a web server:
By default all tests in the specified test folder will execute, and they will execute in parallel groups to speed up the overall execution. You can limit execution to only some tests by means of the `--testCases` argument. Specify the names of tests to run (i.e. the folder names) separated by comma. If you have a powerful machine with lots of cores you can raise the `--maxParallel` option from the default 5 to a higher number. This controls how many tests are placed in each group that executes in parallel. Setting it to 1 disables parallel execution and all tests will then execute serially one after the other.
0 commit comments