We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b52769b commit d95a6cfCopy full SHA for d95a6cf
src/bootstrap/test.rs
@@ -183,6 +183,7 @@ impl Step for Cargotest {
183
builder,
184
cmd.arg(&cargo)
185
.arg(&out_dir)
186
+ .args(builder.config.cmd.test_args())
187
.env("RUSTC", builder.rustc(compiler))
188
.env("RUSTDOC", builder.rustdoc(compiler)),
189
);
src/tools/cargotest/main.rs
@@ -85,7 +85,9 @@ fn main() {
85
let cargo = &Path::new(cargo);
86
87
for test in TEST_REPOS.iter().rev() {
88
- test_repo(cargo, out_dir, test);
+ if args[3..].is_empty() || args[3..].iter().any(|s| s.contains(test.name)) {
89
+ test_repo(cargo, out_dir, test);
90
+ }
91
}
92
93
0 commit comments