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 4b8fea6Copy full SHA for 4b8fea6
src/bootstrap/src/core/build_steps/test.rs
@@ -3599,12 +3599,11 @@ impl Step for TestFloatParse {
3599
&[],
3600
);
3601
3602
- cargo_run.arg("--");
3603
- if builder.config.args().is_empty() {
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());
+ if env::var("FLOAT_PARSE_TESTS_SKIP_HUGE").unwrap_or_default() == "1" {
+ cargo_run
+ .arg("--")
+ // By default, exclude tests that take longer than ~1m.
+ .arg("--skip-huge");
3608
}
3609
3610
cargo_run.into_cmd().run(builder);
0 commit comments