diff options
author | Peter Zhu <peter@peterzhu.ca> | 2022-07-31 17:03:19 -0400 |
---|---|---|
committer | Peter Zhu <peter@peterzhu.ca> | 2022-08-02 09:40:53 -0400 |
commit | da00243dfe745cba3b176112fe8245c23e6f1635 (patch) | |
tree | 65385ec274ef3017059eacc288e3ec459767461f /doc/contributing/testing_ruby.md | |
parent | f70b26af47f4f4e851e1a16d2c13951485272325 (diff) | |
download | ruby-da00243dfe745cba3b176112fe8245c23e6f1635.tar.gz |
[DOC] Specify ways to run bootstrap tests
Diffstat (limited to 'doc/contributing/testing_ruby.md')
-rw-r--r-- | doc/contributing/testing_ruby.md | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/contributing/testing_ruby.md b/doc/contributing/testing_ruby.md index ecdb152926..6247686efc 100644 --- a/doc/contributing/testing_ruby.md +++ b/doc/contributing/testing_ruby.md @@ -20,10 +20,11 @@ We can run any of the make scripts [in parallel](building_ruby.md#label-Running+ make btest OPTS=-v ``` - To run an individual bootstrap test, we can set the filename in the environment variable `BTESTS`: + To run individual bootstrap tests, we can either specify a list of filenames or use the `--sets` flag in the variable `BTESTS`: ``` - make btest BTESTS=bootstraptest/test_gc.rb + make btest BTESTS="bootstraptest/test_fork.rb bootstraptest/tes_gc.rb" + make btest BTESTS="--sets=fork,gc" ``` If we want to run the bootstrap test suite on Ruby (not Miniruby), we can use: |