From: Debian Rust Maintainers Date: Thu, 14 Jul 2022 11:17:39 +0000 (+0200) Subject: d-bootstrap-no-assume-tools X-Git-Tag: archive/raspbian/1.78.0+dfsg1-2_deb12u3+rpi1~3^2~17 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=35dd19e491f17671e564d0649f2274f8a53bffb1;p=rustc-web.git d-bootstrap-no-assume-tools =================================================================== Gbp-Pq: Name d-bootstrap-no-assume-tools.patch --- diff --git a/src/bootstrap/builder/tests.rs b/src/bootstrap/builder/tests.rs index 70cb0de7cc..77f5c19345 100644 --- a/src/bootstrap/builder/tests.rs +++ b/src/bootstrap/builder/tests.rs @@ -348,9 +348,13 @@ mod dist { fn dist_only_cross_host() { let a = TargetSelection::from_user("A"); let b = TargetSelection::from_user("B"); + let mut tools = std::collections::HashSet::new(); + tools.insert("clippy".to_string()); + tools.insert("rustfmt".to_string()); let mut config = configure(&["A", "B"], &["A", "B"]); config.docs = false; config.extended = true; + config.tools = Some(tools); config.hosts = vec![b]; let mut cache = run_build(&[], config);