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: BUILDING.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -125,10 +125,10 @@ from MRI's tests (under test/mri), use one of the following commands:
125
125
The MRI suite (under `test/mri`) has a runner script in `test/mri/runner.rb` that sets up
126
126
an appropriate test environment. Many of the MRI tests will need to be run via this script.
127
127
```
128
-
jruby test/mri/runner.rb test/mri/<path to test>
128
+
jruby -r ./test/mri_test_env.rb test/mri/runner.rb test/mri/<path to test>
129
129
```
130
130
131
-
You can pass `-v` to the runner for verbose output or `-n test_method_name` to only run a single test method.
131
+
You can pass `-v` to the runner for verbose output or `-n test_method_name` to only run a single test method. If you are interested in all failures you can exlude the -r option (of mri_test_env.rb). Some excluded tests are inherent limitations of JRuby and some are just problems we have not gotten to yet.
132
132
133
133
#### Run a test file with known-failing tests excluded
0 commit comments