We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1824c7f commit 8d404a4Copy full SHA for 8d404a4
src/bootstrap/src/core/build_steps/test.rs
@@ -3599,12 +3599,8 @@ 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 !matches!(env::var("FLOAT_PARSE_TESTS_NO_SKIP_HUGE").as_deref(), Ok("1") | Ok("true")) {
+ cargo_run.args(["--", "--skip-huge"]);
3608
}
3609
3610
cargo_run.into_cmd().run(builder);
0 commit comments