testing_ruby.md: Update make test-all tips [ci skip]

This commit is contained in:
Jun Aruga 2023-05-25 17:57:52 +02:00 committed by Peter Zhu
parent cc698c6cc2
commit 6d450d62fb
Notes: git 2023-05-26 13:19:58 +00:00

View File

@ -70,7 +70,7 @@ We can run any of the make scripts [in parallel](building_ruby.md#label-Running+
first the file name, and then the test name, prefixed with `--name`. For example:
```
make test-all TESTS="../test/ruby/test_alias.rb --name=/test_alias_with_zsuper_method/"
make test-all TESTS="../test/ruby/test_alias.rb --name=TestAlias#test_alias_with_zsuper_method"
```
To run these specs with logs, we can use:
@ -79,6 +79,12 @@ We can run any of the make scripts [in parallel](building_ruby.md#label-Running+
make test-all TESTS=-v
```
We can display the help of the `TESTS` option:
```
$ make test-all TESTS=--help
```
If we would like to run both the `test/` and `bootstraptest/` test suites, we can run
```