Explain single element vector

This commit is contained in:
Oli Scherer 2023-09-25 10:32:24 +00:00
parent 1ec85a8441
commit 71aea48fc6

View File

@ -128,6 +128,8 @@ fn run_tests(mode: Mode, path: &str, target: &str, with_dependencies: bool) -> R
} }
eprintln!(" Compiler: {}", config.program.display()); eprintln!(" Compiler: {}", config.program.display());
ui_test::run_tests_generic( ui_test::run_tests_generic(
// Only run one test suite. In the future we can add all test suites to one `Vec` and run
// them all at once, making best use of systems with high parallelism.
vec![config], vec![config],
// The files we're actually interested in (all `.rs` files). // The files we're actually interested in (all `.rs` files).
ui_test::default_file_filter, ui_test::default_file_filter,