We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1824c7f commit 11dca9eCopy full SHA for 11dca9e
src/bootstrap/src/core/build_steps/test.rs
@@ -3599,13 +3599,10 @@ impl Step for TestFloatParse {
3599
&[],
3600
);
3601
3602
- cargo_run.arg("--");
3603
- if builder.config.args().is_empty() {
+ cargo_run
+ .arg("--")
3604
// By default, exclude tests that take longer than ~1m.
3605
- cargo_run.arg("--skip-huge");
3606
- } else {
3607
- cargo_run.args(builder.config.args());
3608
- }
+ .arg("--skip-huge");
3609
3610
cargo_run.into_cmd().run(builder);
3611
}
0 commit comments