Skip to content

Commit 11dca9e

Browse files
committed
don't pass every test arg to test-float-parse
Signed-off-by: onur-ozkan <[email protected]>
1 parent 1824c7f commit 11dca9e

File tree

1 file changed

+3
-6
lines changed
  • src/bootstrap/src/core/build_steps

1 file changed

+3
-6
lines changed

src/bootstrap/src/core/build_steps/test.rs

+3-6
Original file line numberDiff line numberDiff line change
@@ -3599,13 +3599,10 @@ impl Step for TestFloatParse {
35993599
&[],
36003600
);
36013601

3602-
cargo_run.arg("--");
3603-
if builder.config.args().is_empty() {
3602+
cargo_run
3603+
.arg("--")
36043604
// 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-
}
3605+
.arg("--skip-huge");
36093606

36103607
cargo_run.into_cmd().run(builder);
36113608
}

0 commit comments

Comments
 (0)