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.
This commit is contained in:
Matthias Krüger
2025-03-28 12:59:58 +01:00
committed by GitHub
+1 -1
View File
@@ -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);