about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthias Krüger <476013+matthiaskrgr@users.noreply.github.com>2025-03-28 12:59:58 +0100
committerGitHub <noreply@github.com>2025-03-28 12:59:58 +0100
commitea56904feb1e63e73a66622d22509e44cc5ab715 (patch)
tree85f36519701ce415ae9e269acc24eba5e32926c6
parent5261a0aedf4b9b07f22b5ec6952f8d9e37edb25e (diff)
parentd5f7e71d5c861c513fda67bd35382ac03049e177 (diff)
downloadrust-ea56904feb1e63e73a66622d22509e44cc5ab715.tar.gz
rust-ea56904feb1e63e73a66622d22509e44cc5ab715.zip
Rollup merge of #139045 - onur-ozkan:less-verbose-bootstrap-test, r=Kobzol
bootstrap: update `test_find` test

`cc::Build::get_archiver` is noisy on the `arm-linux-androideabi` target and constantly printing `llvm-ar --version` output during bootstrap tests on all platforms.
-rw-r--r--src/bootstrap/src/utils/cc_detect/tests.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap/src/utils/cc_detect/tests.rs b/src/bootstrap/src/utils/cc_detect/tests.rs
index c97529cbe9e..b4a1b52dd23 100644
--- a/src/bootstrap/src/utils/cc_detect/tests.rs
+++ b/src/bootstrap/src/utils/cc_detect/tests.rs
@@ -264,7 +264,7 @@ fn test_find_target_without_config() {
 fn test_find() {
     let mut build = Build::new(Config { ..Config::parse(Flags::parse(&["check".to_owned()])) });
     let target1 = TargetSelection::from_user("x86_64-unknown-linux-gnu");
-    let target2 = TargetSelection::from_user("arm-linux-androideabi");
+    let target2 = TargetSelection::from_user("x86_64-unknown-openbsd");
     build.targets.push(target1.clone());
     build.hosts.push(target2.clone());
     find(&build);