summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMatt Valentine-House <matt@eightbitraptor.com>2022-07-27 13:18:25 +0100
committerPeter Zhu <peter@peterzhu.ca>2022-07-27 09:16:04 -0400
commit70a9328b791f46a16e0f2d85db28b893a6ceed5b (patch)
tree38846edc0d258d03227cdaacd671b499561853b0 /doc
parent64c8291c7e7b6c5e1357c48ab4edb0f434ef1739 (diff)
[ci-skip]Document how to run an individual bootstrap test
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/6190
Diffstat (limited to 'doc')
-rw-r--r--doc/contributing/testing_ruby.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/contributing/testing_ruby.md b/doc/contributing/testing_ruby.md
index dd46ba5dbc..ecdb152926 100644
--- a/doc/contributing/testing_ruby.md
+++ b/doc/contributing/testing_ruby.md
@@ -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:
```