From 80409f701657b2c0996751f1b36c19868e7c5f18 Mon Sep 17 00:00:00 2001 From: Weihang Lo Date: Fri, 13 Dec 2024 22:35:12 -0500 Subject: [PATCH] test(build-std): dont require rustup It checks rustup existence even when test is skipped for other reasons --- tests/testsuite/standard_lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/testsuite/standard_lib.rs b/tests/testsuite/standard_lib.rs index 16645c17bce..9fadc4fb02f 100644 --- a/tests/testsuite/standard_lib.rs +++ b/tests/testsuite/standard_lib.rs @@ -389,7 +389,7 @@ fn check_core() { .run(); } -#[cargo_test(build_std_mock, requires = "rustup")] +#[cargo_test(build_std_mock)] fn build_std_with_no_arg_for_core_only_target() { let has_rustup_aarch64_unknown_none = std::process::Command::new("rustup") .args(["target", "list", "--installed"])