Rollup merge of #85287 - eggyal:expose-test-concurrent, r=m-ou-se
Expose `Concurrent` (private type in public i'face) #53410 introduced experimental support for custom test frameworks. Such frameworks may wish to build upon `library/test` by calling into its publicly exposed API (which I entirely understand is wholly unstable). However, any that wish to call `test::run_test` cannot currently do so because `test::options::Concurrent` (the type of its `concurrent` parameter) is not publicly exposed.
This commit is contained in:
commit
a552b5b04b
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ pub mod test {
|
||||||
cli::{parse_opts, TestOpts},
|
cli::{parse_opts, TestOpts},
|
||||||
filter_tests,
|
filter_tests,
|
||||||
helpers::metrics::{Metric, MetricMap},
|
helpers::metrics::{Metric, MetricMap},
|
||||||
options::{Options, RunIgnored, RunStrategy, ShouldPanic},
|
options::{Concurrent, Options, RunIgnored, RunStrategy, ShouldPanic},
|
||||||
run_test, test_main, test_main_static,
|
run_test, test_main, test_main_static,
|
||||||
test_result::{TestResult, TrFailed, TrFailedMsg, TrIgnored, TrOk},
|
test_result::{TestResult, TrFailed, TrFailedMsg, TrIgnored, TrOk},
|
||||||
time::{TestExecTime, TestTimeOptions},
|
time::{TestExecTime, TestTimeOptions},
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue