Skip to content

Commit d95a6cf

Browse files
committed
Add support for --test-args to cargotest
This allows running a single test without having to wait for all tests to complete.
1 parent b52769b commit d95a6cf

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/bootstrap/test.rs

+1
Original file line numberDiff line numberDiff line change
@@ -183,6 +183,7 @@ impl Step for Cargotest {
183183
builder,
184184
cmd.arg(&cargo)
185185
.arg(&out_dir)
186+
.args(builder.config.cmd.test_args())
186187
.env("RUSTC", builder.rustc(compiler))
187188
.env("RUSTDOC", builder.rustdoc(compiler)),
188189
);

src/tools/cargotest/main.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,9 @@ fn main() {
8585
let cargo = &Path::new(cargo);
8686

8787
for test in TEST_REPOS.iter().rev() {
88-
test_repo(cargo, out_dir, test);
88+
if args[3..].is_empty() || args[3..].iter().any(|s| s.contains(test.name)) {
89+
test_repo(cargo, out_dir, test);
90+
}
8991
}
9092
}
9193

0 commit comments

Comments
 (0)