File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -235,9 +235,9 @@ inherent interpreter slowdown and a loss of parallelism.
235
235
You can get your test suite's parallelism back by running `cargo miri nextest run -jN`
236
236
(note that you will need [`cargo-nextest`](https://nexte.st) installed).
237
237
This works because `cargo-nextest` collects a list of all tests then launches a
238
- separate `cargo miri run` for each test. You will need to specify a `-j` or `--test-threads`,
239
- by default `cargo miri nextest run` runs one test at a time. You can find the `cargo-nextest`
240
- documentation for its Miri support here : https://nexte.st/book/miri.html
238
+ separate `cargo miri run` for each test. You will need to specify a `-j` or `--test-threads`;
239
+ by default `cargo miri nextest run` runs one test at a time. For more details, see the
240
+ [`cargo-nextest` Miri documentation]( https://nexte.st/book/miri.html).
241
241
242
242
Note : This one-test-per-process model means that `cargo miri test` is able to detect data
243
243
races where two tests race on a shared resource, but `cargo miri nextest run` will not detect
You can’t perform that action at this time.
0 commit comments