Skip to content

Commit f800822

Browse files
authored
Unrolled build for rust-lang#139045
Rollup merge of rust-lang#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.
2 parents 2a06022 + d5f7e71 commit f800822

File tree

1 file changed

+1
-1
lines changed
  • src/bootstrap/src/utils/cc_detect

1 file changed

+1
-1
lines changed

src/bootstrap/src/utils/cc_detect/tests.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ fn test_find_target_without_config() {
264264
fn test_find() {
265265
let mut build = Build::new(Config { ..Config::parse(Flags::parse(&["check".to_owned()])) });
266266
let target1 = TargetSelection::from_user("x86_64-unknown-linux-gnu");
267-
let target2 = TargetSelection::from_user("arm-linux-androideabi");
267+
let target2 = TargetSelection::from_user("x86_64-unknown-openbsd");
268268
build.targets.push(target1.clone());
269269
build.hosts.push(target2.clone());
270270
find(&build);

0 commit comments

Comments
 (0)