1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

[ci-skip]Document how to run an individual bootstrap test

This commit is contained in:
Matt Valentine-House 2022-07-27 13:18:25 +01:00 committed by Peter Zhu
parent 64c8291c7e
commit 70a9328b79
Notes: git 2022-07-27 22:16:25 +09:00

View file

@ -20,6 +20,12 @@ 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`:
```
make btest BTESTS=bootstraptest/test_gc.rb
```
If we want to run the bootstrap test suite on Ruby (not Miniruby), we can use:
```