]> git.lizzy.rs Git - rust.git/blob - src/bootstrap/test.rs
Rollup merge of #101864 - notriddle:notriddle/h1-h2-h3-h4, r=GuillaumeGomez
[rust.git] / src / bootstrap / test.rs
1 //! Implementation of the test-related targets of the build system.
2 //!
3 //! This file implements the various regression test suites that we execute on
4 //! our CI.
5
6 use std::env;
7 use std::ffi::OsString;
8 use std::fmt;
9 use std::fs;
10 use std::iter;
11 use std::path::{Path, PathBuf};
12 use std::process::{Command, Stdio};
13
14 use crate::builder::{Builder, Compiler, Kind, RunConfig, ShouldRun, Step};
15 use crate::cache::Interned;
16 use crate::compile;
17 use crate::config::TargetSelection;
18 use crate::dist;
19 use crate::flags::Subcommand;
20 use crate::native;
21 use crate::tool::{self, SourceType, Tool};
22 use crate::toolstate::ToolState;
23 use crate::util::{self, add_link_lib_path, dylib_path, dylib_path_var, output, t};
24 use crate::{envify, CLang, DocTests, GitRepo, Mode};
25
26 const ADB_TEST_DIR: &str = "/data/tmp/work";
27
28 /// The two modes of the test runner; tests or benchmarks.
29 #[derive(Debug, PartialEq, Eq, Hash, Copy, Clone, PartialOrd, Ord)]
30 pub enum TestKind {
31     /// Run `cargo test`.
32     Test,
33     /// Run `cargo bench`.
34     Bench,
35 }
36
37 impl From<Kind> for TestKind {
38     fn from(kind: Kind) -> Self {
39         match kind {
40             Kind::Test => TestKind::Test,
41             Kind::Bench => TestKind::Bench,
42             _ => panic!("unexpected kind in crate: {:?}", kind),
43         }
44     }
45 }
46
47 impl TestKind {
48     // Return the cargo subcommand for this test kind
49     fn subcommand(self) -> &'static str {
50         match self {
51             TestKind::Test => "test",
52             TestKind::Bench => "bench",
53         }
54     }
55 }
56
57 impl fmt::Display for TestKind {
58     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
59         f.write_str(match *self {
60             TestKind::Test => "Testing",
61             TestKind::Bench => "Benchmarking",
62         })
63     }
64 }
65
66 fn try_run(builder: &Builder<'_>, cmd: &mut Command) -> bool {
67     if !builder.fail_fast {
68         if !builder.try_run(cmd) {
69             let mut failures = builder.delayed_failures.borrow_mut();
70             failures.push(format!("{:?}", cmd));
71             return false;
72         }
73     } else {
74         builder.run(cmd);
75     }
76     true
77 }
78
79 fn try_run_quiet(builder: &Builder<'_>, cmd: &mut Command) -> bool {
80     if !builder.fail_fast {
81         if !builder.try_run_quiet(cmd) {
82             let mut failures = builder.delayed_failures.borrow_mut();
83             failures.push(format!("{:?}", cmd));
84             return false;
85         }
86     } else {
87         builder.run_quiet(cmd);
88     }
89     true
90 }
91
92 #[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
93 pub struct Linkcheck {
94     host: TargetSelection,
95 }
96
97 impl Step for Linkcheck {
98     type Output = ();
99     const ONLY_HOSTS: bool = true;
100     const DEFAULT: bool = true;
101
102     /// Runs the `linkchecker` tool as compiled in `stage` by the `host` compiler.
103     ///
104     /// This tool in `src/tools` will verify the validity of all our links in the
105     /// documentation to ensure we don't have a bunch of dead ones.
106     fn run(self, builder: &Builder<'_>) {
107         let host = self.host;
108         let hosts = &builder.hosts;
109         let targets = &builder.targets;
110
111         // if we have different hosts and targets, some things may be built for
112         // the host (e.g. rustc) and others for the target (e.g. std). The
113         // documentation built for each will contain broken links to
114         // docs built for the other platform (e.g. rustc linking to cargo)
115         if (hosts != targets) && !hosts.is_empty() && !targets.is_empty() {
116             panic!(
117                 "Linkcheck currently does not support builds with different hosts and targets.
118 You can skip linkcheck with --exclude src/tools/linkchecker"
119             );
120         }
121
122         builder.info(&format!("Linkcheck ({})", host));
123
124         // Test the linkchecker itself.
125         let bootstrap_host = builder.config.build;
126         let compiler = builder.compiler(0, bootstrap_host);
127         let cargo = tool::prepare_tool_cargo(
128             builder,
129             compiler,
130             Mode::ToolBootstrap,
131             bootstrap_host,
132             "test",
133             "src/tools/linkchecker",
134             SourceType::InTree,
135             &[],
136         );
137         try_run(builder, &mut cargo.into());
138
139         // Build all the default documentation.
140         builder.default_doc(&[]);
141
142         // Run the linkchecker.
143         let _time = util::timeit(&builder);
144         try_run(
145             builder,
146             builder.tool_cmd(Tool::Linkchecker).arg(builder.out.join(host.triple).join("doc")),
147         );
148     }
149
150     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
151         let builder = run.builder;
152         let run = run.path("src/tools/linkchecker");
153         run.default_condition(builder.config.docs)
154     }
155
156     fn make_run(run: RunConfig<'_>) {
157         run.builder.ensure(Linkcheck { host: run.target });
158     }
159 }
160
161 fn check_if_tidy_is_installed() -> bool {
162     Command::new("tidy")
163         .arg("--version")
164         .stdout(Stdio::null())
165         .status()
166         .map_or(false, |status| status.success())
167 }
168
169 #[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
170 pub struct HtmlCheck {
171     target: TargetSelection,
172 }
173
174 impl Step for HtmlCheck {
175     type Output = ();
176     const DEFAULT: bool = true;
177     const ONLY_HOSTS: bool = true;
178
179     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
180         let run = run.path("src/tools/html-checker");
181         run.lazy_default_condition(Box::new(check_if_tidy_is_installed))
182     }
183
184     fn make_run(run: RunConfig<'_>) {
185         run.builder.ensure(HtmlCheck { target: run.target });
186     }
187
188     fn run(self, builder: &Builder<'_>) {
189         if !check_if_tidy_is_installed() {
190             eprintln!("not running HTML-check tool because `tidy` is missing");
191             eprintln!(
192                 "Note that `tidy` is not the in-tree `src/tools/tidy` but needs to be installed"
193             );
194             panic!("Cannot run html-check tests");
195         }
196         // Ensure that a few different kinds of documentation are available.
197         builder.default_doc(&[]);
198         builder.ensure(crate::doc::Rustc { target: self.target, stage: builder.top_stage });
199
200         try_run(builder, builder.tool_cmd(Tool::HtmlChecker).arg(builder.doc_out(self.target)));
201     }
202 }
203
204 #[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
205 pub struct Cargotest {
206     stage: u32,
207     host: TargetSelection,
208 }
209
210 impl Step for Cargotest {
211     type Output = ();
212     const ONLY_HOSTS: bool = true;
213
214     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
215         run.path("src/tools/cargotest")
216     }
217
218     fn make_run(run: RunConfig<'_>) {
219         run.builder.ensure(Cargotest { stage: run.builder.top_stage, host: run.target });
220     }
221
222     /// Runs the `cargotest` tool as compiled in `stage` by the `host` compiler.
223     ///
224     /// This tool in `src/tools` will check out a few Rust projects and run `cargo
225     /// test` to ensure that we don't regress the test suites there.
226     fn run(self, builder: &Builder<'_>) {
227         let compiler = builder.compiler(self.stage, self.host);
228         builder.ensure(compile::Rustc::new(compiler, compiler.host));
229         let cargo = builder.ensure(tool::Cargo { compiler, target: compiler.host });
230
231         // Note that this is a short, cryptic, and not scoped directory name. This
232         // is currently to minimize the length of path on Windows where we otherwise
233         // quickly run into path name limit constraints.
234         let out_dir = builder.out.join("ct");
235         t!(fs::create_dir_all(&out_dir));
236
237         let _time = util::timeit(&builder);
238         let mut cmd = builder.tool_cmd(Tool::CargoTest);
239         try_run(
240             builder,
241             cmd.arg(&cargo)
242                 .arg(&out_dir)
243                 .args(builder.config.cmd.test_args())
244                 .env("RUSTC", builder.rustc(compiler))
245                 .env("RUSTDOC", builder.rustdoc(compiler)),
246         );
247     }
248 }
249
250 #[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
251 pub struct Cargo {
252     stage: u32,
253     host: TargetSelection,
254 }
255
256 impl Step for Cargo {
257     type Output = ();
258     const ONLY_HOSTS: bool = true;
259
260     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
261         run.path("src/tools/cargo")
262     }
263
264     fn make_run(run: RunConfig<'_>) {
265         run.builder.ensure(Cargo { stage: run.builder.top_stage, host: run.target });
266     }
267
268     /// Runs `cargo test` for `cargo` packaged with Rust.
269     fn run(self, builder: &Builder<'_>) {
270         let compiler = builder.compiler(self.stage, self.host);
271
272         builder.ensure(tool::Cargo { compiler, target: self.host });
273         let mut cargo = tool::prepare_tool_cargo(
274             builder,
275             compiler,
276             Mode::ToolRustc,
277             self.host,
278             "test",
279             "src/tools/cargo",
280             SourceType::Submodule,
281             &[],
282         );
283
284         if !builder.fail_fast {
285             cargo.arg("--no-fail-fast");
286         }
287         cargo.arg("--").args(builder.config.cmd.test_args());
288
289         // Don't run cross-compile tests, we may not have cross-compiled libstd libs
290         // available.
291         cargo.env("CFG_DISABLE_CROSS_TESTS", "1");
292         // Forcibly disable tests using nightly features since any changes to
293         // those features won't be able to land.
294         cargo.env("CARGO_TEST_DISABLE_NIGHTLY", "1");
295
296         cargo.env("PATH", &path_for_cargo(builder, compiler));
297
298         try_run(builder, &mut cargo.into());
299     }
300 }
301
302 #[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
303 pub struct RustAnalyzer {
304     stage: u32,
305     host: TargetSelection,
306 }
307
308 impl Step for RustAnalyzer {
309     type Output = ();
310     const ONLY_HOSTS: bool = true;
311     const DEFAULT: bool = true;
312
313     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
314         run.path("src/tools/rust-analyzer")
315     }
316
317     fn make_run(run: RunConfig<'_>) {
318         run.builder.ensure(Self { stage: run.builder.top_stage, host: run.target });
319     }
320
321     /// Runs `cargo test` for rust-analyzer
322     fn run(self, builder: &Builder<'_>) {
323         let stage = self.stage;
324         let host = self.host;
325         let compiler = builder.compiler(stage, host);
326
327         builder.ensure(tool::RustAnalyzer { compiler, target: self.host }).expect("in-tree tool");
328
329         let workspace_path = "src/tools/rust-analyzer";
330         // until the whole RA test suite runs on `i686`, we only run
331         // `proc-macro-srv` tests
332         let crate_path = "src/tools/rust-analyzer/crates/proc-macro-srv";
333         let mut cargo = tool::prepare_tool_cargo(
334             builder,
335             compiler,
336             Mode::ToolStd,
337             host,
338             "test",
339             crate_path,
340             SourceType::InTree,
341             &["sysroot-abi".to_owned()],
342         );
343
344         let dir = builder.src.join(workspace_path);
345         // needed by rust-analyzer to find its own text fixtures, cf.
346         // https://github.com/rust-analyzer/expect-test/issues/33
347         cargo.env("CARGO_WORKSPACE_DIR", &dir);
348
349         // RA's test suite tries to write to the source directory, that can't
350         // work in Rust CI
351         cargo.env("SKIP_SLOW_TESTS", "1");
352
353         cargo.add_rustc_lib_path(builder, compiler);
354         cargo.arg("--").args(builder.config.cmd.test_args());
355
356         builder.run(&mut cargo.into());
357     }
358 }
359
360 #[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
361 pub struct Rustfmt {
362     stage: u32,
363     host: TargetSelection,
364 }
365
366 impl Step for Rustfmt {
367     type Output = ();
368     const ONLY_HOSTS: bool = true;
369
370     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
371         run.path("src/tools/rustfmt")
372     }
373
374     fn make_run(run: RunConfig<'_>) {
375         run.builder.ensure(Rustfmt { stage: run.builder.top_stage, host: run.target });
376     }
377
378     /// Runs `cargo test` for rustfmt.
379     fn run(self, builder: &Builder<'_>) {
380         let stage = self.stage;
381         let host = self.host;
382         let compiler = builder.compiler(stage, host);
383
384         builder
385             .ensure(tool::Rustfmt { compiler, target: self.host, extra_features: Vec::new() })
386             .expect("in-tree tool");
387
388         let mut cargo = tool::prepare_tool_cargo(
389             builder,
390             compiler,
391             Mode::ToolRustc,
392             host,
393             "test",
394             "src/tools/rustfmt",
395             SourceType::InTree,
396             &[],
397         );
398
399         let dir = testdir(builder, compiler.host);
400         t!(fs::create_dir_all(&dir));
401         cargo.env("RUSTFMT_TEST_DIR", dir);
402
403         cargo.add_rustc_lib_path(builder, compiler);
404
405         builder.run(&mut cargo.into());
406     }
407 }
408
409 #[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
410 pub struct RustDemangler {
411     stage: u32,
412     host: TargetSelection,
413 }
414
415 impl Step for RustDemangler {
416     type Output = ();
417     const ONLY_HOSTS: bool = true;
418
419     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
420         run.path("src/tools/rust-demangler")
421     }
422
423     fn make_run(run: RunConfig<'_>) {
424         run.builder.ensure(RustDemangler { stage: run.builder.top_stage, host: run.target });
425     }
426
427     /// Runs `cargo test` for rust-demangler.
428     fn run(self, builder: &Builder<'_>) {
429         let stage = self.stage;
430         let host = self.host;
431         let compiler = builder.compiler(stage, host);
432
433         let rust_demangler = builder
434             .ensure(tool::RustDemangler { compiler, target: self.host, extra_features: Vec::new() })
435             .expect("in-tree tool");
436         let mut cargo = tool::prepare_tool_cargo(
437             builder,
438             compiler,
439             Mode::ToolRustc,
440             host,
441             "test",
442             "src/tools/rust-demangler",
443             SourceType::InTree,
444             &[],
445         );
446
447         let dir = testdir(builder, compiler.host);
448         t!(fs::create_dir_all(&dir));
449
450         cargo.env("RUST_DEMANGLER_DRIVER_PATH", rust_demangler);
451
452         cargo.arg("--").args(builder.config.cmd.test_args());
453
454         cargo.add_rustc_lib_path(builder, compiler);
455
456         builder.run(&mut cargo.into());
457     }
458 }
459
460 #[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
461 pub struct Miri {
462     stage: u32,
463     host: TargetSelection,
464 }
465
466 impl Step for Miri {
467     type Output = ();
468     const ONLY_HOSTS: bool = true;
469
470     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
471         run.path("src/tools/miri")
472     }
473
474     fn make_run(run: RunConfig<'_>) {
475         run.builder.ensure(Miri { stage: run.builder.top_stage, host: run.target });
476     }
477
478     /// Runs `cargo test` for miri.
479     fn run(self, builder: &Builder<'_>) {
480         let stage = self.stage;
481         let host = self.host;
482         let compiler = builder.compiler(stage, host);
483         // We need the stdlib for the *next* stage, as it was built with this compiler that also built Miri.
484         // Except if we are at stage 2, the bootstrap loop is complete and we can stick with our current stage.
485         let compiler_std = builder.compiler(if stage < 2 { stage + 1 } else { stage }, host);
486
487         let miri =
488             builder.ensure(tool::Miri { compiler, target: self.host, extra_features: Vec::new() });
489         let cargo_miri = builder.ensure(tool::CargoMiri {
490             compiler,
491             target: self.host,
492             extra_features: Vec::new(),
493         });
494         // The stdlib we need might be at a different stage. And just asking for the
495         // sysroot does not seem to populate it, so we do that first.
496         builder.ensure(compile::Std::new(compiler_std, host));
497         let sysroot = builder.sysroot(compiler_std);
498         if let (Some(miri), Some(_cargo_miri)) = (miri, cargo_miri) {
499             let mut cargo =
500                 builder.cargo(compiler, Mode::ToolRustc, SourceType::Submodule, host, "install");
501             cargo.arg("xargo");
502             // Configure `cargo install` path. cargo adds a `bin/`.
503             cargo.env("CARGO_INSTALL_ROOT", &builder.out);
504
505             let mut cargo = Command::from(cargo);
506             if !try_run(builder, &mut cargo) {
507                 return;
508             }
509
510             // # Run `cargo miri setup`.
511             let mut cargo = tool::prepare_tool_cargo(
512                 builder,
513                 compiler,
514                 Mode::ToolRustc,
515                 host,
516                 "run",
517                 "src/tools/miri/cargo-miri",
518                 SourceType::Submodule,
519                 &[],
520             );
521             cargo.add_rustc_lib_path(builder, compiler);
522             cargo.arg("--").arg("miri").arg("setup");
523
524             // Tell `cargo miri setup` where to find the sources.
525             cargo.env("XARGO_RUST_SRC", builder.src.join("library"));
526             // Tell it where to find Miri.
527             cargo.env("MIRI", &miri);
528             // Debug things.
529             cargo.env("RUST_BACKTRACE", "1");
530             // Let cargo-miri know where xargo ended up.
531             cargo.env("XARGO_CHECK", builder.out.join("bin").join("xargo-check"));
532
533             let mut cargo = Command::from(cargo);
534             if !try_run(builder, &mut cargo) {
535                 return;
536             }
537
538             // # Determine where Miri put its sysroot.
539             // To this end, we run `cargo miri setup --print-sysroot` and capture the output.
540             // (We do this separately from the above so that when the setup actually
541             // happens we get some output.)
542             // We re-use the `cargo` from above.
543             cargo.arg("--print-sysroot");
544
545             // FIXME: Is there a way in which we can re-use the usual `run` helpers?
546             let miri_sysroot = if builder.config.dry_run {
547                 String::new()
548             } else {
549                 builder.verbose(&format!("running: {:?}", cargo));
550                 let out = cargo
551                     .output()
552                     .expect("We already ran `cargo miri setup` before and that worked");
553                 assert!(out.status.success(), "`cargo miri setup` returned with non-0 exit code");
554                 // Output is "<sysroot>\n".
555                 let stdout = String::from_utf8(out.stdout)
556                     .expect("`cargo miri setup` stdout is not valid UTF-8");
557                 let sysroot = stdout.trim_end();
558                 builder.verbose(&format!("`cargo miri setup --print-sysroot` said: {:?}", sysroot));
559                 sysroot.to_owned()
560             };
561
562             // # Run `cargo test`.
563             let mut cargo = tool::prepare_tool_cargo(
564                 builder,
565                 compiler,
566                 Mode::ToolRustc,
567                 host,
568                 "test",
569                 "src/tools/miri",
570                 SourceType::Submodule,
571                 &[],
572             );
573             cargo.add_rustc_lib_path(builder, compiler);
574
575             // miri tests need to know about the stage sysroot
576             cargo.env("MIRI_SYSROOT", miri_sysroot);
577             cargo.env("MIRI_HOST_SYSROOT", sysroot);
578             cargo.env("RUSTC_LIB_PATH", builder.rustc_libdir(compiler));
579             cargo.env("MIRI", miri);
580             // propagate --bless
581             if builder.config.cmd.bless() {
582                 cargo.env("MIRI_BLESS", "Gesundheit");
583             }
584
585             cargo.arg("--").args(builder.config.cmd.test_args());
586
587             let mut cargo = Command::from(cargo);
588             if !try_run(builder, &mut cargo) {
589                 return;
590             }
591
592             // # Done!
593             builder.save_toolstate("miri", ToolState::TestPass);
594         } else {
595             eprintln!("failed to test miri: could not build");
596         }
597     }
598 }
599
600 #[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
601 pub struct CompiletestTest {
602     host: TargetSelection,
603 }
604
605 impl Step for CompiletestTest {
606     type Output = ();
607
608     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
609         run.path("src/tools/compiletest")
610     }
611
612     fn make_run(run: RunConfig<'_>) {
613         run.builder.ensure(CompiletestTest { host: run.target });
614     }
615
616     /// Runs `cargo test` for compiletest.
617     fn run(self, builder: &Builder<'_>) {
618         let host = self.host;
619         let compiler = builder.compiler(0, host);
620
621         // We need `ToolStd` for the locally-built sysroot because
622         // compiletest uses unstable features of the `test` crate.
623         builder.ensure(compile::Std::new(compiler, host));
624         let cargo = tool::prepare_tool_cargo(
625             builder,
626             compiler,
627             Mode::ToolStd,
628             host,
629             "test",
630             "src/tools/compiletest",
631             SourceType::InTree,
632             &[],
633         );
634
635         try_run(builder, &mut cargo.into());
636     }
637 }
638
639 #[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
640 pub struct Clippy {
641     stage: u32,
642     host: TargetSelection,
643 }
644
645 impl Step for Clippy {
646     type Output = ();
647     const ONLY_HOSTS: bool = true;
648     const DEFAULT: bool = false;
649
650     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
651         run.path("src/tools/clippy")
652     }
653
654     fn make_run(run: RunConfig<'_>) {
655         run.builder.ensure(Clippy { stage: run.builder.top_stage, host: run.target });
656     }
657
658     /// Runs `cargo test` for clippy.
659     fn run(self, builder: &Builder<'_>) {
660         let stage = self.stage;
661         let host = self.host;
662         let compiler = builder.compiler(stage, host);
663
664         builder
665             .ensure(tool::Clippy { compiler, target: self.host, extra_features: Vec::new() })
666             .expect("in-tree tool");
667         let mut cargo = tool::prepare_tool_cargo(
668             builder,
669             compiler,
670             Mode::ToolRustc,
671             host,
672             "test",
673             "src/tools/clippy",
674             SourceType::InTree,
675             &[],
676         );
677
678         cargo.env("RUSTC_TEST_SUITE", builder.rustc(compiler));
679         cargo.env("RUSTC_LIB_PATH", builder.rustc_libdir(compiler));
680         let host_libs = builder.stage_out(compiler, Mode::ToolRustc).join(builder.cargo_dir());
681         cargo.env("HOST_LIBS", host_libs);
682
683         cargo.arg("--").args(builder.config.cmd.test_args());
684
685         cargo.add_rustc_lib_path(builder, compiler);
686
687         if builder.try_run(&mut cargo.into()) {
688             // The tests succeeded; nothing to do.
689             return;
690         }
691
692         if !builder.config.cmd.bless() {
693             crate::detail_exit(1);
694         }
695
696         let mut cargo = builder.cargo(compiler, Mode::ToolRustc, SourceType::InTree, host, "run");
697         cargo.arg("-p").arg("clippy_dev");
698         // clippy_dev gets confused if it can't find `clippy/Cargo.toml`
699         cargo.current_dir(&builder.src.join("src").join("tools").join("clippy"));
700         if builder.config.rust_optimize {
701             cargo.env("PROFILE", "release");
702         } else {
703             cargo.env("PROFILE", "debug");
704         }
705         cargo.arg("--");
706         cargo.arg("bless");
707         builder.run(&mut cargo.into());
708     }
709 }
710
711 fn path_for_cargo(builder: &Builder<'_>, compiler: Compiler) -> OsString {
712     // Configure PATH to find the right rustc. NB. we have to use PATH
713     // and not RUSTC because the Cargo test suite has tests that will
714     // fail if rustc is not spelled `rustc`.
715     let path = builder.sysroot(compiler).join("bin");
716     let old_path = env::var_os("PATH").unwrap_or_default();
717     env::join_paths(iter::once(path).chain(env::split_paths(&old_path))).expect("")
718 }
719
720 #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
721 pub struct RustdocTheme {
722     pub compiler: Compiler,
723 }
724
725 impl Step for RustdocTheme {
726     type Output = ();
727     const DEFAULT: bool = true;
728     const ONLY_HOSTS: bool = true;
729
730     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
731         run.path("src/tools/rustdoc-themes")
732     }
733
734     fn make_run(run: RunConfig<'_>) {
735         let compiler = run.builder.compiler(run.builder.top_stage, run.target);
736
737         run.builder.ensure(RustdocTheme { compiler });
738     }
739
740     fn run(self, builder: &Builder<'_>) {
741         let rustdoc = builder.bootstrap_out.join("rustdoc");
742         let mut cmd = builder.tool_cmd(Tool::RustdocTheme);
743         cmd.arg(rustdoc.to_str().unwrap())
744             .arg(builder.src.join("src/librustdoc/html/static/css/themes").to_str().unwrap())
745             .env("RUSTC_STAGE", self.compiler.stage.to_string())
746             .env("RUSTC_SYSROOT", builder.sysroot(self.compiler))
747             .env("RUSTDOC_LIBDIR", builder.sysroot_libdir(self.compiler, self.compiler.host))
748             .env("CFG_RELEASE_CHANNEL", &builder.config.channel)
749             .env("RUSTDOC_REAL", builder.rustdoc(self.compiler))
750             .env("RUSTC_BOOTSTRAP", "1");
751         if let Some(linker) = builder.linker(self.compiler.host) {
752             cmd.env("RUSTDOC_LINKER", linker);
753         }
754         if builder.is_fuse_ld_lld(self.compiler.host) {
755             cmd.env("RUSTDOC_FUSE_LD_LLD", "1");
756         }
757         try_run(builder, &mut cmd);
758     }
759 }
760
761 #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
762 pub struct RustdocJSStd {
763     pub target: TargetSelection,
764 }
765
766 impl Step for RustdocJSStd {
767     type Output = ();
768     const DEFAULT: bool = true;
769     const ONLY_HOSTS: bool = true;
770
771     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
772         run.suite_path("src/test/rustdoc-js-std")
773     }
774
775     fn make_run(run: RunConfig<'_>) {
776         run.builder.ensure(RustdocJSStd { target: run.target });
777     }
778
779     fn run(self, builder: &Builder<'_>) {
780         if let Some(ref nodejs) = builder.config.nodejs {
781             let mut command = Command::new(nodejs);
782             command
783                 .arg(builder.src.join("src/tools/rustdoc-js/tester.js"))
784                 .arg("--crate-name")
785                 .arg("std")
786                 .arg("--resource-suffix")
787                 .arg(&builder.version)
788                 .arg("--doc-folder")
789                 .arg(builder.doc_out(self.target))
790                 .arg("--test-folder")
791                 .arg(builder.src.join("src/test/rustdoc-js-std"));
792             for path in &builder.paths {
793                 if let Some(p) =
794                     util::is_valid_test_suite_arg(path, "src/test/rustdoc-js-std", builder)
795                 {
796                     if !p.ends_with(".js") {
797                         eprintln!("A non-js file was given: `{}`", path.display());
798                         panic!("Cannot run rustdoc-js-std tests");
799                     }
800                     command.arg("--test-file").arg(path);
801                 }
802             }
803             builder.ensure(crate::doc::Std { target: self.target, stage: builder.top_stage });
804             builder.run(&mut command);
805         } else {
806             builder.info("No nodejs found, skipping \"src/test/rustdoc-js-std\" tests");
807         }
808     }
809 }
810
811 #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
812 pub struct RustdocJSNotStd {
813     pub target: TargetSelection,
814     pub compiler: Compiler,
815 }
816
817 impl Step for RustdocJSNotStd {
818     type Output = ();
819     const DEFAULT: bool = true;
820     const ONLY_HOSTS: bool = true;
821
822     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
823         run.suite_path("src/test/rustdoc-js")
824     }
825
826     fn make_run(run: RunConfig<'_>) {
827         let compiler = run.builder.compiler(run.builder.top_stage, run.build_triple());
828         run.builder.ensure(RustdocJSNotStd { target: run.target, compiler });
829     }
830
831     fn run(self, builder: &Builder<'_>) {
832         if builder.config.nodejs.is_some() {
833             builder.ensure(Compiletest {
834                 compiler: self.compiler,
835                 target: self.target,
836                 mode: "js-doc-test",
837                 suite: "rustdoc-js",
838                 path: "src/test/rustdoc-js",
839                 compare_mode: None,
840             });
841         } else {
842             builder.info("No nodejs found, skipping \"src/test/rustdoc-js\" tests");
843         }
844     }
845 }
846
847 fn get_browser_ui_test_version_inner(npm: &Path, global: bool) -> Option<String> {
848     let mut command = Command::new(&npm);
849     command.arg("list").arg("--parseable").arg("--long").arg("--depth=0");
850     if global {
851         command.arg("--global");
852     }
853     let lines = command
854         .output()
855         .map(|output| String::from_utf8_lossy(&output.stdout).into_owned())
856         .unwrap_or(String::new());
857     lines
858         .lines()
859         .find_map(|l| l.split(':').nth(1)?.strip_prefix("browser-ui-test@"))
860         .map(|v| v.to_owned())
861 }
862
863 fn get_browser_ui_test_version(npm: &Path) -> Option<String> {
864     get_browser_ui_test_version_inner(npm, false)
865         .or_else(|| get_browser_ui_test_version_inner(npm, true))
866 }
867
868 fn compare_browser_ui_test_version(installed_version: &str, src: &Path) {
869     match fs::read_to_string(
870         src.join("src/ci/docker/host-x86_64/x86_64-gnu-tools/browser-ui-test.version"),
871     ) {
872         Ok(v) => {
873             if v.trim() != installed_version {
874                 eprintln!(
875                     "⚠️ Installed version of browser-ui-test (`{}`) is different than the \
876                      one used in the CI (`{}`)",
877                     installed_version, v
878                 );
879                 eprintln!(
880                     "You can install this version using `npm update browser-ui-test` or by using \
881                      `npm install browser-ui-test@{}`",
882                     v,
883                 );
884             }
885         }
886         Err(e) => eprintln!("Couldn't find the CI browser-ui-test version: {:?}", e),
887     }
888 }
889
890 #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)]
891 pub struct RustdocGUI {
892     pub target: TargetSelection,
893     pub compiler: Compiler,
894 }
895
896 impl Step for RustdocGUI {
897     type Output = ();
898     const DEFAULT: bool = true;
899     const ONLY_HOSTS: bool = true;
900
901     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
902         let builder = run.builder;
903         let run = run.suite_path("src/test/rustdoc-gui");
904         run.lazy_default_condition(Box::new(move || {
905             builder.config.nodejs.is_some()
906                 && builder
907                     .config
908                     .npm
909                     .as_ref()
910                     .map(|p| get_browser_ui_test_version(p).is_some())
911                     .unwrap_or(false)
912         }))
913     }
914
915     fn make_run(run: RunConfig<'_>) {
916         let compiler = run.builder.compiler(run.builder.top_stage, run.build_triple());
917         run.builder.ensure(RustdocGUI { target: run.target, compiler });
918     }
919
920     fn run(self, builder: &Builder<'_>) {
921         let nodejs = builder.config.nodejs.as_ref().expect("nodejs isn't available");
922         let npm = builder.config.npm.as_ref().expect("npm isn't available");
923
924         builder.ensure(compile::Std::new(self.compiler, self.target));
925
926         // The goal here is to check if the necessary packages are installed, and if not, we
927         // panic.
928         match get_browser_ui_test_version(&npm) {
929             Some(version) => {
930                 // We also check the version currently used in CI and emit a warning if it's not the
931                 // same one.
932                 compare_browser_ui_test_version(&version, &builder.build.src);
933             }
934             None => {
935                 eprintln!(
936                     "error: rustdoc-gui test suite cannot be run because npm `browser-ui-test` \
937                      dependency is missing",
938                 );
939                 eprintln!(
940                     "If you want to install the `{0}` dependency, run `npm install {0}`",
941                     "browser-ui-test",
942                 );
943                 panic!("Cannot run rustdoc-gui tests");
944             }
945         }
946
947         let out_dir = builder.test_out(self.target).join("rustdoc-gui");
948
949         // We remove existing folder to be sure there won't be artifacts remaining.
950         builder.clear_if_dirty(&out_dir, &builder.rustdoc(self.compiler));
951
952         let src_path = builder.build.src.join("src/test/rustdoc-gui/src");
953         // We generate docs for the libraries present in the rustdoc-gui's src folder.
954         for entry in src_path.read_dir().expect("read_dir call failed") {
955             if let Ok(entry) = entry {
956                 let path = entry.path();
957
958                 if !path.is_dir() {
959                     continue;
960                 }
961
962                 let mut cargo = Command::new(&builder.initial_cargo);
963                 cargo
964                     .arg("doc")
965                     .arg("--target-dir")
966                     .arg(&out_dir)
967                     .env("RUSTDOC", builder.rustdoc(self.compiler))
968                     .env("RUSTC", builder.rustc(self.compiler))
969                     .current_dir(path);
970                 // FIXME: implement a `// compile-flags` command or similar
971                 //        instead of hard-coding this test
972                 if entry.file_name() == "link_to_definition" {
973                     cargo.env("RUSTDOCFLAGS", "-Zunstable-options --generate-link-to-definition");
974                 }
975                 builder.run(&mut cargo);
976             }
977         }
978
979         // We now run GUI tests.
980         let mut command = Command::new(&nodejs);
981         command
982             .arg(builder.build.src.join("src/tools/rustdoc-gui/tester.js"))
983             .arg("--jobs")
984             .arg(&builder.jobs().to_string())
985             .arg("--doc-folder")
986             .arg(out_dir.join("doc"))
987             .arg("--tests-folder")
988             .arg(builder.build.src.join("src/test/rustdoc-gui"));
989         for path in &builder.paths {
990             if let Some(p) = util::is_valid_test_suite_arg(path, "src/test/rustdoc-gui", builder) {
991                 if !p.ends_with(".goml") {
992                     eprintln!("A non-goml file was given: `{}`", path.display());
993                     panic!("Cannot run rustdoc-gui tests");
994                 }
995                 if let Some(name) = path.file_name().and_then(|f| f.to_str()) {
996                     command.arg("--file").arg(name);
997                 }
998             }
999         }
1000         for test_arg in builder.config.cmd.test_args() {
1001             command.arg(test_arg);
1002         }
1003         builder.run(&mut command);
1004     }
1005 }
1006
1007 #[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
1008 pub struct Tidy;
1009
1010 impl Step for Tidy {
1011     type Output = ();
1012     const DEFAULT: bool = true;
1013     const ONLY_HOSTS: bool = true;
1014
1015     /// Runs the `tidy` tool.
1016     ///
1017     /// This tool in `src/tools` checks up on various bits and pieces of style and
1018     /// otherwise just implements a few lint-like checks that are specific to the
1019     /// compiler itself.
1020     ///
1021     /// Once tidy passes, this step also runs `fmt --check` if tests are being run
1022     /// for the `dev` or `nightly` channels.
1023     fn run(self, builder: &Builder<'_>) {
1024         let mut cmd = builder.tool_cmd(Tool::Tidy);
1025         cmd.arg(&builder.src);
1026         cmd.arg(&builder.initial_cargo);
1027         cmd.arg(&builder.out);
1028         cmd.arg(builder.jobs().to_string());
1029         if builder.is_verbose() {
1030             cmd.arg("--verbose");
1031         }
1032
1033         builder.info("tidy check");
1034         try_run(builder, &mut cmd);
1035
1036         if builder.config.channel == "dev" || builder.config.channel == "nightly" {
1037             builder.info("fmt check");
1038             if builder.initial_rustfmt().is_none() {
1039                 let inferred_rustfmt_dir = builder.config.initial_rustc.parent().unwrap();
1040                 eprintln!(
1041                     "\
1042 error: no `rustfmt` binary found in {PATH}
1043 info: `rust.channel` is currently set to \"{CHAN}\"
1044 help: if you are testing a beta branch, set `rust.channel` to \"beta\" in the `config.toml` file
1045 help: to skip test's attempt to check tidiness, pass `--exclude src/tools/tidy` to `x.py test`",
1046                     PATH = inferred_rustfmt_dir.display(),
1047                     CHAN = builder.config.channel,
1048                 );
1049                 crate::detail_exit(1);
1050             }
1051             crate::format::format(&builder, !builder.config.cmd.bless(), &[]);
1052         }
1053     }
1054
1055     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
1056         run.path("src/tools/tidy")
1057     }
1058
1059     fn make_run(run: RunConfig<'_>) {
1060         run.builder.ensure(Tidy);
1061     }
1062 }
1063
1064 #[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
1065 pub struct ExpandYamlAnchors;
1066
1067 impl Step for ExpandYamlAnchors {
1068     type Output = ();
1069     const ONLY_HOSTS: bool = true;
1070
1071     /// Ensure the `generate-ci-config` tool was run locally.
1072     ///
1073     /// The tool in `src/tools` reads the CI definition in `src/ci/builders.yml` and generates the
1074     /// appropriate configuration for all our CI providers. This step ensures the tool was called
1075     /// by the user before committing CI changes.
1076     fn run(self, builder: &Builder<'_>) {
1077         builder.info("Ensuring the YAML anchors in the GitHub Actions config were expanded");
1078         try_run(
1079             builder,
1080             &mut builder.tool_cmd(Tool::ExpandYamlAnchors).arg("check").arg(&builder.src),
1081         );
1082     }
1083
1084     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
1085         run.path("src/tools/expand-yaml-anchors")
1086     }
1087
1088     fn make_run(run: RunConfig<'_>) {
1089         run.builder.ensure(ExpandYamlAnchors);
1090     }
1091 }
1092
1093 fn testdir(builder: &Builder<'_>, host: TargetSelection) -> PathBuf {
1094     builder.out.join(host.triple).join("test")
1095 }
1096
1097 macro_rules! default_test {
1098     ($name:ident { path: $path:expr, mode: $mode:expr, suite: $suite:expr }) => {
1099         test!($name { path: $path, mode: $mode, suite: $suite, default: true, host: false });
1100     };
1101 }
1102
1103 macro_rules! default_test_with_compare_mode {
1104     ($name:ident { path: $path:expr, mode: $mode:expr, suite: $suite:expr,
1105                    compare_mode: $compare_mode:expr }) => {
1106         test_with_compare_mode!($name {
1107             path: $path,
1108             mode: $mode,
1109             suite: $suite,
1110             default: true,
1111             host: false,
1112             compare_mode: $compare_mode
1113         });
1114     };
1115 }
1116
1117 macro_rules! host_test {
1118     ($name:ident { path: $path:expr, mode: $mode:expr, suite: $suite:expr }) => {
1119         test!($name { path: $path, mode: $mode, suite: $suite, default: true, host: true });
1120     };
1121 }
1122
1123 macro_rules! test {
1124     ($name:ident { path: $path:expr, mode: $mode:expr, suite: $suite:expr, default: $default:expr,
1125                    host: $host:expr }) => {
1126         test_definitions!($name {
1127             path: $path,
1128             mode: $mode,
1129             suite: $suite,
1130             default: $default,
1131             host: $host,
1132             compare_mode: None
1133         });
1134     };
1135 }
1136
1137 macro_rules! test_with_compare_mode {
1138     ($name:ident { path: $path:expr, mode: $mode:expr, suite: $suite:expr, default: $default:expr,
1139                    host: $host:expr, compare_mode: $compare_mode:expr }) => {
1140         test_definitions!($name {
1141             path: $path,
1142             mode: $mode,
1143             suite: $suite,
1144             default: $default,
1145             host: $host,
1146             compare_mode: Some($compare_mode)
1147         });
1148     };
1149 }
1150
1151 macro_rules! test_definitions {
1152     ($name:ident {
1153         path: $path:expr,
1154         mode: $mode:expr,
1155         suite: $suite:expr,
1156         default: $default:expr,
1157         host: $host:expr,
1158         compare_mode: $compare_mode:expr
1159     }) => {
1160         #[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
1161         pub struct $name {
1162             pub compiler: Compiler,
1163             pub target: TargetSelection,
1164         }
1165
1166         impl Step for $name {
1167             type Output = ();
1168             const DEFAULT: bool = $default;
1169             const ONLY_HOSTS: bool = $host;
1170
1171             fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
1172                 run.suite_path($path)
1173             }
1174
1175             fn make_run(run: RunConfig<'_>) {
1176                 let compiler = run.builder.compiler(run.builder.top_stage, run.build_triple());
1177
1178                 run.builder.ensure($name { compiler, target: run.target });
1179             }
1180
1181             fn run(self, builder: &Builder<'_>) {
1182                 builder.ensure(Compiletest {
1183                     compiler: self.compiler,
1184                     target: self.target,
1185                     mode: $mode,
1186                     suite: $suite,
1187                     path: $path,
1188                     compare_mode: $compare_mode,
1189                 })
1190             }
1191         }
1192     };
1193 }
1194
1195 default_test!(Ui { path: "src/test/ui", mode: "ui", suite: "ui" });
1196
1197 default_test!(RunPassValgrind {
1198     path: "src/test/run-pass-valgrind",
1199     mode: "run-pass-valgrind",
1200     suite: "run-pass-valgrind"
1201 });
1202
1203 default_test!(MirOpt { path: "src/test/mir-opt", mode: "mir-opt", suite: "mir-opt" });
1204
1205 default_test!(Codegen { path: "src/test/codegen", mode: "codegen", suite: "codegen" });
1206
1207 default_test!(CodegenUnits {
1208     path: "src/test/codegen-units",
1209     mode: "codegen-units",
1210     suite: "codegen-units"
1211 });
1212
1213 default_test!(Incremental {
1214     path: "src/test/incremental",
1215     mode: "incremental",
1216     suite: "incremental"
1217 });
1218
1219 default_test_with_compare_mode!(Debuginfo {
1220     path: "src/test/debuginfo",
1221     mode: "debuginfo",
1222     suite: "debuginfo",
1223     compare_mode: "split-dwarf"
1224 });
1225
1226 host_test!(UiFullDeps { path: "src/test/ui-fulldeps", mode: "ui", suite: "ui-fulldeps" });
1227
1228 host_test!(Rustdoc { path: "src/test/rustdoc", mode: "rustdoc", suite: "rustdoc" });
1229 host_test!(RustdocUi { path: "src/test/rustdoc-ui", mode: "ui", suite: "rustdoc-ui" });
1230
1231 host_test!(RustdocJson {
1232     path: "src/test/rustdoc-json",
1233     mode: "rustdoc-json",
1234     suite: "rustdoc-json"
1235 });
1236
1237 host_test!(Pretty { path: "src/test/pretty", mode: "pretty", suite: "pretty" });
1238
1239 default_test!(RunMake { path: "src/test/run-make", mode: "run-make", suite: "run-make" });
1240
1241 host_test!(RunMakeFullDeps {
1242     path: "src/test/run-make-fulldeps",
1243     mode: "run-make",
1244     suite: "run-make-fulldeps"
1245 });
1246
1247 default_test!(Assembly { path: "src/test/assembly", mode: "assembly", suite: "assembly" });
1248
1249 #[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
1250 struct Compiletest {
1251     compiler: Compiler,
1252     target: TargetSelection,
1253     mode: &'static str,
1254     suite: &'static str,
1255     path: &'static str,
1256     compare_mode: Option<&'static str>,
1257 }
1258
1259 impl Step for Compiletest {
1260     type Output = ();
1261
1262     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
1263         run.never()
1264     }
1265
1266     /// Executes the `compiletest` tool to run a suite of tests.
1267     ///
1268     /// Compiles all tests with `compiler` for `target` with the specified
1269     /// compiletest `mode` and `suite` arguments. For example `mode` can be
1270     /// "run-pass" or `suite` can be something like `debuginfo`.
1271     fn run(self, builder: &Builder<'_>) {
1272         if builder.top_stage == 0 && env::var("COMPILETEST_FORCE_STAGE0").is_err() {
1273             eprintln!("\
1274 error: `--stage 0` runs compiletest on the beta compiler, not your local changes, and will almost always cause tests to fail
1275 help: to test the compiler, use `--stage 1` instead
1276 help: to test the standard library, use `--stage 0 library/std` instead
1277 note: if you're sure you want to do this, please open an issue as to why. In the meantime, you can override this with `COMPILETEST_FORCE_STAGE0=1`."
1278             );
1279             crate::detail_exit(1);
1280         }
1281
1282         let compiler = self.compiler;
1283         let target = self.target;
1284         let mode = self.mode;
1285         let suite = self.suite;
1286
1287         // Path for test suite
1288         let suite_path = self.path;
1289
1290         // Skip codegen tests if they aren't enabled in configuration.
1291         if !builder.config.codegen_tests && suite == "codegen" {
1292             return;
1293         }
1294
1295         if suite == "debuginfo" {
1296             builder
1297                 .ensure(dist::DebuggerScripts { sysroot: builder.sysroot(compiler), host: target });
1298         }
1299
1300         if suite.ends_with("fulldeps") {
1301             builder.ensure(compile::Rustc::new(compiler, target));
1302         }
1303
1304         builder.ensure(compile::Std::new(compiler, target));
1305         // ensure that `libproc_macro` is available on the host.
1306         builder.ensure(compile::Std::new(compiler, compiler.host));
1307
1308         // Also provide `rust_test_helpers` for the host.
1309         builder.ensure(native::TestHelpers { target: compiler.host });
1310
1311         // As well as the target, except for plain wasm32, which can't build it
1312         if !target.contains("wasm") || target.contains("emscripten") {
1313             builder.ensure(native::TestHelpers { target });
1314         }
1315
1316         builder.ensure(RemoteCopyLibs { compiler, target });
1317
1318         let mut cmd = builder.tool_cmd(Tool::Compiletest);
1319
1320         // compiletest currently has... a lot of arguments, so let's just pass all
1321         // of them!
1322
1323         cmd.arg("--compile-lib-path").arg(builder.rustc_libdir(compiler));
1324         cmd.arg("--run-lib-path").arg(builder.sysroot_libdir(compiler, target));
1325         cmd.arg("--rustc-path").arg(builder.rustc(compiler));
1326
1327         let is_rustdoc = suite.ends_with("rustdoc-ui") || suite.ends_with("rustdoc-js");
1328
1329         // Avoid depending on rustdoc when we don't need it.
1330         if mode == "rustdoc"
1331             || mode == "run-make"
1332             || (mode == "ui" && is_rustdoc)
1333             || mode == "js-doc-test"
1334             || mode == "rustdoc-json"
1335         {
1336             cmd.arg("--rustdoc-path").arg(builder.rustdoc(compiler));
1337         }
1338
1339         if mode == "rustdoc-json" {
1340             // Use the beta compiler for jsondocck
1341             let json_compiler = compiler.with_stage(0);
1342             cmd.arg("--jsondocck-path")
1343                 .arg(builder.ensure(tool::JsonDocCk { compiler: json_compiler, target }));
1344             cmd.arg("--jsondoclint-path")
1345                 .arg(builder.ensure(tool::JsonDocLint { compiler: json_compiler, target }));
1346         }
1347
1348         if mode == "run-make" {
1349             let rust_demangler = builder
1350                 .ensure(tool::RustDemangler {
1351                     compiler,
1352                     target: compiler.host,
1353                     extra_features: Vec::new(),
1354                 })
1355                 .expect("in-tree tool");
1356             cmd.arg("--rust-demangler-path").arg(rust_demangler);
1357         }
1358
1359         cmd.arg("--src-base").arg(builder.src.join("src/test").join(suite));
1360         cmd.arg("--build-base").arg(testdir(builder, compiler.host).join(suite));
1361         cmd.arg("--stage-id").arg(format!("stage{}-{}", compiler.stage, target));
1362         cmd.arg("--suite").arg(suite);
1363         cmd.arg("--mode").arg(mode);
1364         cmd.arg("--target").arg(target.rustc_target_arg());
1365         cmd.arg("--host").arg(&*compiler.host.triple);
1366         cmd.arg("--llvm-filecheck").arg(builder.llvm_filecheck(builder.config.build));
1367
1368         if builder.config.cmd.bless() {
1369             cmd.arg("--bless");
1370         }
1371
1372         if builder.config.cmd.force_rerun() {
1373             cmd.arg("--force-rerun");
1374         }
1375
1376         let compare_mode =
1377             builder.config.cmd.compare_mode().or_else(|| {
1378                 if builder.config.test_compare_mode { self.compare_mode } else { None }
1379             });
1380
1381         if let Some(ref pass) = builder.config.cmd.pass() {
1382             cmd.arg("--pass");
1383             cmd.arg(pass);
1384         }
1385
1386         if let Some(ref run) = builder.config.cmd.run() {
1387             cmd.arg("--run");
1388             cmd.arg(run);
1389         }
1390
1391         if let Some(ref nodejs) = builder.config.nodejs {
1392             cmd.arg("--nodejs").arg(nodejs);
1393         }
1394         if let Some(ref npm) = builder.config.npm {
1395             cmd.arg("--npm").arg(npm);
1396         }
1397         if builder.config.rust_optimize_tests {
1398             cmd.arg("--optimize-tests");
1399         }
1400         let mut flags = if is_rustdoc { Vec::new() } else { vec!["-Crpath".to_string()] };
1401         flags.push(format!("-Cdebuginfo={}", builder.config.rust_debuginfo_level_tests));
1402         flags.push(builder.config.cmd.rustc_args().join(" "));
1403
1404         if let Some(linker) = builder.linker(target) {
1405             cmd.arg("--linker").arg(linker);
1406         }
1407
1408         let mut hostflags = flags.clone();
1409         hostflags.push(format!("-Lnative={}", builder.test_helpers_out(compiler.host).display()));
1410         hostflags.extend(builder.lld_flags(compiler.host));
1411         cmd.arg("--host-rustcflags").arg(hostflags.join(" "));
1412
1413         let mut targetflags = flags;
1414         targetflags.push(format!("-Lnative={}", builder.test_helpers_out(target).display()));
1415         targetflags.extend(builder.lld_flags(target));
1416         cmd.arg("--target-rustcflags").arg(targetflags.join(" "));
1417
1418         cmd.arg("--python").arg(builder.python());
1419
1420         if let Some(ref gdb) = builder.config.gdb {
1421             cmd.arg("--gdb").arg(gdb);
1422         }
1423
1424         let run = |cmd: &mut Command| {
1425             cmd.output().map(|output| {
1426                 String::from_utf8_lossy(&output.stdout)
1427                     .lines()
1428                     .next()
1429                     .unwrap_or_else(|| panic!("{:?} failed {:?}", cmd, output))
1430                     .to_string()
1431             })
1432         };
1433         let lldb_exe = "lldb";
1434         let lldb_version = Command::new(lldb_exe)
1435             .arg("--version")
1436             .output()
1437             .map(|output| String::from_utf8_lossy(&output.stdout).to_string())
1438             .ok();
1439         if let Some(ref vers) = lldb_version {
1440             cmd.arg("--lldb-version").arg(vers);
1441             let lldb_python_dir = run(Command::new(lldb_exe).arg("-P")).ok();
1442             if let Some(ref dir) = lldb_python_dir {
1443                 cmd.arg("--lldb-python-dir").arg(dir);
1444             }
1445         }
1446
1447         if util::forcing_clang_based_tests() {
1448             let clang_exe = builder.llvm_out(target).join("bin").join("clang");
1449             cmd.arg("--run-clang-based-tests-with").arg(clang_exe);
1450         }
1451
1452         for exclude in &builder.config.exclude {
1453             cmd.arg("--skip");
1454             cmd.arg(&exclude.path);
1455         }
1456
1457         // Get paths from cmd args
1458         let paths = match &builder.config.cmd {
1459             Subcommand::Test { ref paths, .. } => &paths[..],
1460             _ => &[],
1461         };
1462
1463         // Get test-args by striping suite path
1464         let mut test_args: Vec<&str> = paths
1465             .iter()
1466             .filter_map(|p| util::is_valid_test_suite_arg(p, suite_path, builder))
1467             .collect();
1468
1469         test_args.append(&mut builder.config.cmd.test_args());
1470
1471         // On Windows, replace forward slashes in test-args by backslashes
1472         // so the correct filters are passed to libtest
1473         if cfg!(windows) {
1474             let test_args_win: Vec<String> =
1475                 test_args.iter().map(|s| s.replace("/", "\\")).collect();
1476             cmd.args(&test_args_win);
1477         } else {
1478             cmd.args(&test_args);
1479         }
1480
1481         if builder.is_verbose() {
1482             cmd.arg("--verbose");
1483         }
1484
1485         if !builder.config.verbose_tests {
1486             cmd.arg("--quiet");
1487         }
1488
1489         let mut llvm_components_passed = false;
1490         let mut copts_passed = false;
1491         if builder.config.llvm_enabled() {
1492             let llvm_config = builder.ensure(native::Llvm { target: builder.config.build });
1493             if !builder.config.dry_run {
1494                 let llvm_version = output(Command::new(&llvm_config).arg("--version"));
1495                 let llvm_components = output(Command::new(&llvm_config).arg("--components"));
1496                 // Remove trailing newline from llvm-config output.
1497                 cmd.arg("--llvm-version")
1498                     .arg(llvm_version.trim())
1499                     .arg("--llvm-components")
1500                     .arg(llvm_components.trim());
1501                 llvm_components_passed = true;
1502             }
1503             if !builder.is_rust_llvm(target) {
1504                 cmd.arg("--system-llvm");
1505             }
1506
1507             // Tests that use compiler libraries may inherit the `-lLLVM` link
1508             // requirement, but the `-L` library path is not propagated across
1509             // separate compilations. We can add LLVM's library path to the
1510             // platform-specific environment variable as a workaround.
1511             if !builder.config.dry_run && suite.ends_with("fulldeps") {
1512                 let llvm_libdir = output(Command::new(&llvm_config).arg("--libdir"));
1513                 add_link_lib_path(vec![llvm_libdir.trim().into()], &mut cmd);
1514             }
1515
1516             // Only pass correct values for these flags for the `run-make` suite as it
1517             // requires that a C++ compiler was configured which isn't always the case.
1518             if !builder.config.dry_run && matches!(suite, "run-make" | "run-make-fulldeps") {
1519                 // The llvm/bin directory contains many useful cross-platform
1520                 // tools. Pass the path to run-make tests so they can use them.
1521                 let llvm_bin_path = llvm_config
1522                     .parent()
1523                     .expect("Expected llvm-config to be contained in directory");
1524                 assert!(llvm_bin_path.is_dir());
1525                 cmd.arg("--llvm-bin-dir").arg(llvm_bin_path);
1526
1527                 // If LLD is available, add it to the PATH
1528                 if builder.config.lld_enabled {
1529                     let lld_install_root =
1530                         builder.ensure(native::Lld { target: builder.config.build });
1531
1532                     let lld_bin_path = lld_install_root.join("bin");
1533
1534                     let old_path = env::var_os("PATH").unwrap_or_default();
1535                     let new_path = env::join_paths(
1536                         std::iter::once(lld_bin_path).chain(env::split_paths(&old_path)),
1537                     )
1538                     .expect("Could not add LLD bin path to PATH");
1539                     cmd.env("PATH", new_path);
1540                 }
1541             }
1542         }
1543
1544         // Only pass correct values for these flags for the `run-make` suite as it
1545         // requires that a C++ compiler was configured which isn't always the case.
1546         if !builder.config.dry_run && matches!(suite, "run-make" | "run-make-fulldeps") {
1547             cmd.arg("--cc")
1548                 .arg(builder.cc(target))
1549                 .arg("--cxx")
1550                 .arg(builder.cxx(target).unwrap())
1551                 .arg("--cflags")
1552                 .arg(builder.cflags(target, GitRepo::Rustc, CLang::C).join(" "))
1553                 .arg("--cxxflags")
1554                 .arg(builder.cflags(target, GitRepo::Rustc, CLang::Cxx).join(" "));
1555             copts_passed = true;
1556             if let Some(ar) = builder.ar(target) {
1557                 cmd.arg("--ar").arg(ar);
1558             }
1559         }
1560
1561         if !llvm_components_passed {
1562             cmd.arg("--llvm-components").arg("");
1563         }
1564         if !copts_passed {
1565             cmd.arg("--cc")
1566                 .arg("")
1567                 .arg("--cxx")
1568                 .arg("")
1569                 .arg("--cflags")
1570                 .arg("")
1571                 .arg("--cxxflags")
1572                 .arg("");
1573         }
1574
1575         if builder.remote_tested(target) {
1576             cmd.arg("--remote-test-client").arg(builder.tool_exe(Tool::RemoteTestClient));
1577         }
1578
1579         // Running a C compiler on MSVC requires a few env vars to be set, to be
1580         // sure to set them here.
1581         //
1582         // Note that if we encounter `PATH` we make sure to append to our own `PATH`
1583         // rather than stomp over it.
1584         if target.contains("msvc") {
1585             for &(ref k, ref v) in builder.cc[&target].env() {
1586                 if k != "PATH" {
1587                     cmd.env(k, v);
1588                 }
1589             }
1590         }
1591         cmd.env("RUSTC_BOOTSTRAP", "1");
1592         // Override the rustc version used in symbol hashes to reduce the amount of normalization
1593         // needed when diffing test output.
1594         cmd.env("RUSTC_FORCE_RUSTC_VERSION", "compiletest");
1595         cmd.env("DOC_RUST_LANG_ORG_CHANNEL", builder.doc_rust_lang_org_channel());
1596         builder.add_rust_test_threads(&mut cmd);
1597
1598         if builder.config.sanitizers_enabled(target) {
1599             cmd.env("RUSTC_SANITIZER_SUPPORT", "1");
1600         }
1601
1602         if builder.config.profiler_enabled(target) {
1603             cmd.env("RUSTC_PROFILER_SUPPORT", "1");
1604         }
1605
1606         cmd.env("RUST_TEST_TMPDIR", builder.tempdir());
1607
1608         cmd.arg("--adb-path").arg("adb");
1609         cmd.arg("--adb-test-dir").arg(ADB_TEST_DIR);
1610         if target.contains("android") {
1611             // Assume that cc for this target comes from the android sysroot
1612             cmd.arg("--android-cross-path")
1613                 .arg(builder.cc(target).parent().unwrap().parent().unwrap());
1614         } else {
1615             cmd.arg("--android-cross-path").arg("");
1616         }
1617
1618         if builder.config.cmd.rustfix_coverage() {
1619             cmd.arg("--rustfix-coverage");
1620         }
1621
1622         cmd.env("BOOTSTRAP_CARGO", &builder.initial_cargo);
1623
1624         cmd.arg("--channel").arg(&builder.config.channel);
1625
1626         builder.ci_env.force_coloring_in_ci(&mut cmd);
1627
1628         builder.info(&format!(
1629             "Check compiletest suite={} mode={} ({} -> {})",
1630             suite, mode, &compiler.host, target
1631         ));
1632         let _time = util::timeit(&builder);
1633         try_run(builder, &mut cmd);
1634
1635         if let Some(compare_mode) = compare_mode {
1636             cmd.arg("--compare-mode").arg(compare_mode);
1637             builder.info(&format!(
1638                 "Check compiletest suite={} mode={} compare_mode={} ({} -> {})",
1639                 suite, mode, compare_mode, &compiler.host, target
1640             ));
1641             let _time = util::timeit(&builder);
1642             try_run(builder, &mut cmd);
1643         }
1644     }
1645 }
1646
1647 #[derive(Debug, Clone, PartialEq, Eq, Hash)]
1648 struct BookTest {
1649     compiler: Compiler,
1650     path: PathBuf,
1651     name: &'static str,
1652     is_ext_doc: bool,
1653 }
1654
1655 impl Step for BookTest {
1656     type Output = ();
1657     const ONLY_HOSTS: bool = true;
1658
1659     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
1660         run.never()
1661     }
1662
1663     /// Runs the documentation tests for a book in `src/doc`.
1664     ///
1665     /// This uses the `rustdoc` that sits next to `compiler`.
1666     fn run(self, builder: &Builder<'_>) {
1667         // External docs are different from local because:
1668         // - Some books need pre-processing by mdbook before being tested.
1669         // - They need to save their state to toolstate.
1670         // - They are only tested on the "checktools" builders.
1671         //
1672         // The local docs are tested by default, and we don't want to pay the
1673         // cost of building mdbook, so they use `rustdoc --test` directly.
1674         // Also, the unstable book is special because SUMMARY.md is generated,
1675         // so it is easier to just run `rustdoc` on its files.
1676         if self.is_ext_doc {
1677             self.run_ext_doc(builder);
1678         } else {
1679             self.run_local_doc(builder);
1680         }
1681     }
1682 }
1683
1684 impl BookTest {
1685     /// This runs the equivalent of `mdbook test` (via the rustbook wrapper)
1686     /// which in turn runs `rustdoc --test` on each file in the book.
1687     fn run_ext_doc(self, builder: &Builder<'_>) {
1688         let compiler = self.compiler;
1689
1690         builder.ensure(compile::Std::new(compiler, compiler.host));
1691
1692         // mdbook just executes a binary named "rustdoc", so we need to update
1693         // PATH so that it points to our rustdoc.
1694         let mut rustdoc_path = builder.rustdoc(compiler);
1695         rustdoc_path.pop();
1696         let old_path = env::var_os("PATH").unwrap_or_default();
1697         let new_path = env::join_paths(iter::once(rustdoc_path).chain(env::split_paths(&old_path)))
1698             .expect("could not add rustdoc to PATH");
1699
1700         let mut rustbook_cmd = builder.tool_cmd(Tool::Rustbook);
1701         let path = builder.src.join(&self.path);
1702         rustbook_cmd.env("PATH", new_path).arg("test").arg(path);
1703         builder.add_rust_test_threads(&mut rustbook_cmd);
1704         builder.info(&format!("Testing rustbook {}", self.path.display()));
1705         let _time = util::timeit(&builder);
1706         let toolstate = if try_run(builder, &mut rustbook_cmd) {
1707             ToolState::TestPass
1708         } else {
1709             ToolState::TestFail
1710         };
1711         builder.save_toolstate(self.name, toolstate);
1712     }
1713
1714     /// This runs `rustdoc --test` on all `.md` files in the path.
1715     fn run_local_doc(self, builder: &Builder<'_>) {
1716         let compiler = self.compiler;
1717
1718         builder.ensure(compile::Std::new(compiler, compiler.host));
1719
1720         // Do a breadth-first traversal of the `src/doc` directory and just run
1721         // tests for all files that end in `*.md`
1722         let mut stack = vec![builder.src.join(self.path)];
1723         let _time = util::timeit(&builder);
1724         let mut files = Vec::new();
1725         while let Some(p) = stack.pop() {
1726             if p.is_dir() {
1727                 stack.extend(t!(p.read_dir()).map(|p| t!(p).path()));
1728                 continue;
1729             }
1730
1731             if p.extension().and_then(|s| s.to_str()) != Some("md") {
1732                 continue;
1733             }
1734
1735             files.push(p);
1736         }
1737
1738         files.sort();
1739
1740         for file in files {
1741             markdown_test(builder, compiler, &file);
1742         }
1743     }
1744 }
1745
1746 macro_rules! test_book {
1747     ($($name:ident, $path:expr, $book_name:expr, default=$default:expr;)+) => {
1748         $(
1749             #[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
1750             pub struct $name {
1751                 compiler: Compiler,
1752             }
1753
1754             impl Step for $name {
1755                 type Output = ();
1756                 const DEFAULT: bool = $default;
1757                 const ONLY_HOSTS: bool = true;
1758
1759                 fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
1760                     run.path($path)
1761                 }
1762
1763                 fn make_run(run: RunConfig<'_>) {
1764                     run.builder.ensure($name {
1765                         compiler: run.builder.compiler(run.builder.top_stage, run.target),
1766                     });
1767                 }
1768
1769                 fn run(self, builder: &Builder<'_>) {
1770                     builder.ensure(BookTest {
1771                         compiler: self.compiler,
1772                         path: PathBuf::from($path),
1773                         name: $book_name,
1774                         is_ext_doc: !$default,
1775                     });
1776                 }
1777             }
1778         )+
1779     }
1780 }
1781
1782 test_book!(
1783     Nomicon, "src/doc/nomicon", "nomicon", default=false;
1784     Reference, "src/doc/reference", "reference", default=false;
1785     RustdocBook, "src/doc/rustdoc", "rustdoc", default=true;
1786     RustcBook, "src/doc/rustc", "rustc", default=true;
1787     RustByExample, "src/doc/rust-by-example", "rust-by-example", default=false;
1788     EmbeddedBook, "src/doc/embedded-book", "embedded-book", default=false;
1789     TheBook, "src/doc/book", "book", default=false;
1790     UnstableBook, "src/doc/unstable-book", "unstable-book", default=true;
1791     EditionGuide, "src/doc/edition-guide", "edition-guide", default=false;
1792 );
1793
1794 #[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
1795 pub struct ErrorIndex {
1796     compiler: Compiler,
1797 }
1798
1799 impl Step for ErrorIndex {
1800     type Output = ();
1801     const DEFAULT: bool = true;
1802     const ONLY_HOSTS: bool = true;
1803
1804     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
1805         run.path("src/tools/error_index_generator")
1806     }
1807
1808     fn make_run(run: RunConfig<'_>) {
1809         // error_index_generator depends on librustdoc. Use the compiler that
1810         // is normally used to build rustdoc for other tests (like compiletest
1811         // tests in src/test/rustdoc) so that it shares the same artifacts.
1812         let compiler = run.builder.compiler(run.builder.top_stage, run.builder.config.build);
1813         run.builder.ensure(ErrorIndex { compiler });
1814     }
1815
1816     /// Runs the error index generator tool to execute the tests located in the error
1817     /// index.
1818     ///
1819     /// The `error_index_generator` tool lives in `src/tools` and is used to
1820     /// generate a markdown file from the error indexes of the code base which is
1821     /// then passed to `rustdoc --test`.
1822     fn run(self, builder: &Builder<'_>) {
1823         let compiler = self.compiler;
1824
1825         let dir = testdir(builder, compiler.host);
1826         t!(fs::create_dir_all(&dir));
1827         let output = dir.join("error-index.md");
1828
1829         let mut tool = tool::ErrorIndex::command(builder);
1830         tool.arg("markdown").arg(&output);
1831
1832         builder.info(&format!("Testing error-index stage{}", compiler.stage));
1833         let _time = util::timeit(&builder);
1834         builder.run_quiet(&mut tool);
1835         // The tests themselves need to link to std, so make sure it is
1836         // available.
1837         builder.ensure(compile::Std::new(compiler, compiler.host));
1838         markdown_test(builder, compiler, &output);
1839     }
1840 }
1841
1842 fn markdown_test(builder: &Builder<'_>, compiler: Compiler, markdown: &Path) -> bool {
1843     if let Ok(contents) = fs::read_to_string(markdown) {
1844         if !contents.contains("```") {
1845             return true;
1846         }
1847     }
1848
1849     builder.info(&format!("doc tests for: {}", markdown.display()));
1850     let mut cmd = builder.rustdoc_cmd(compiler);
1851     builder.add_rust_test_threads(&mut cmd);
1852     // allow for unstable options such as new editions
1853     cmd.arg("-Z");
1854     cmd.arg("unstable-options");
1855     cmd.arg("--test");
1856     cmd.arg(markdown);
1857     cmd.env("RUSTC_BOOTSTRAP", "1");
1858
1859     let test_args = builder.config.cmd.test_args().join(" ");
1860     cmd.arg("--test-args").arg(test_args);
1861
1862     if builder.config.verbose_tests {
1863         try_run(builder, &mut cmd)
1864     } else {
1865         try_run_quiet(builder, &mut cmd)
1866     }
1867 }
1868
1869 #[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
1870 pub struct RustcGuide;
1871
1872 impl Step for RustcGuide {
1873     type Output = ();
1874     const DEFAULT: bool = false;
1875     const ONLY_HOSTS: bool = true;
1876
1877     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
1878         run.path("src/doc/rustc-dev-guide")
1879     }
1880
1881     fn make_run(run: RunConfig<'_>) {
1882         run.builder.ensure(RustcGuide);
1883     }
1884
1885     fn run(self, builder: &Builder<'_>) {
1886         let relative_path = Path::new("src").join("doc").join("rustc-dev-guide");
1887         builder.update_submodule(&relative_path);
1888
1889         let src = builder.src.join(relative_path);
1890         let mut rustbook_cmd = builder.tool_cmd(Tool::Rustbook);
1891         let toolstate = if try_run(builder, rustbook_cmd.arg("linkcheck").arg(&src)) {
1892             ToolState::TestPass
1893         } else {
1894             ToolState::TestFail
1895         };
1896         builder.save_toolstate("rustc-dev-guide", toolstate);
1897     }
1898 }
1899
1900 #[derive(Debug, Clone, PartialEq, Eq, Hash)]
1901 pub struct CrateLibrustc {
1902     compiler: Compiler,
1903     target: TargetSelection,
1904     test_kind: TestKind,
1905     crates: Vec<Interned<String>>,
1906 }
1907
1908 impl Step for CrateLibrustc {
1909     type Output = ();
1910     const DEFAULT: bool = true;
1911     const ONLY_HOSTS: bool = true;
1912
1913     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
1914         run.crate_or_deps("rustc-main")
1915     }
1916
1917     fn make_run(run: RunConfig<'_>) {
1918         let builder = run.builder;
1919         let host = run.build_triple();
1920         let compiler = builder.compiler_for(builder.top_stage, host, host);
1921         let crates = run
1922             .paths
1923             .iter()
1924             .map(|p| builder.crate_paths[&p.assert_single_path().path].clone())
1925             .collect();
1926         let test_kind = builder.kind.into();
1927
1928         builder.ensure(CrateLibrustc { compiler, target: run.target, test_kind, crates });
1929     }
1930
1931     fn run(self, builder: &Builder<'_>) {
1932         builder.ensure(Crate {
1933             compiler: self.compiler,
1934             target: self.target,
1935             mode: Mode::Rustc,
1936             test_kind: self.test_kind,
1937             crates: self.crates,
1938         });
1939     }
1940 }
1941
1942 #[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
1943 pub struct Crate {
1944     pub compiler: Compiler,
1945     pub target: TargetSelection,
1946     pub mode: Mode,
1947     pub test_kind: TestKind,
1948     pub crates: Vec<Interned<String>>,
1949 }
1950
1951 impl Step for Crate {
1952     type Output = ();
1953     const DEFAULT: bool = true;
1954
1955     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
1956         run.crate_or_deps("test")
1957     }
1958
1959     fn make_run(run: RunConfig<'_>) {
1960         let builder = run.builder;
1961         let host = run.build_triple();
1962         let compiler = builder.compiler_for(builder.top_stage, host, host);
1963         let test_kind = builder.kind.into();
1964         let crates = run
1965             .paths
1966             .iter()
1967             .map(|p| builder.crate_paths[&p.assert_single_path().path].clone())
1968             .collect();
1969
1970         builder.ensure(Crate { compiler, target: run.target, mode: Mode::Std, test_kind, crates });
1971     }
1972
1973     /// Runs all unit tests plus documentation tests for a given crate defined
1974     /// by a `Cargo.toml` (single manifest)
1975     ///
1976     /// This is what runs tests for crates like the standard library, compiler, etc.
1977     /// It essentially is the driver for running `cargo test`.
1978     ///
1979     /// Currently this runs all tests for a DAG by passing a bunch of `-p foo`
1980     /// arguments, and those arguments are discovered from `cargo metadata`.
1981     fn run(self, builder: &Builder<'_>) {
1982         let compiler = self.compiler;
1983         let target = self.target;
1984         let mode = self.mode;
1985         let test_kind = self.test_kind;
1986
1987         builder.ensure(compile::Std::new(compiler, target));
1988         builder.ensure(RemoteCopyLibs { compiler, target });
1989
1990         // If we're not doing a full bootstrap but we're testing a stage2
1991         // version of libstd, then what we're actually testing is the libstd
1992         // produced in stage1. Reflect that here by updating the compiler that
1993         // we're working with automatically.
1994         let compiler = builder.compiler_for(compiler.stage, compiler.host, target);
1995
1996         let mut cargo =
1997             builder.cargo(compiler, mode, SourceType::InTree, target, test_kind.subcommand());
1998         match mode {
1999             Mode::Std => {
2000                 compile::std_cargo(builder, target, compiler.stage, &mut cargo);
2001             }
2002             Mode::Rustc => {
2003                 compile::rustc_cargo(builder, &mut cargo, target);
2004             }
2005             _ => panic!("can only test libraries"),
2006         };
2007
2008         // Build up the base `cargo test` command.
2009         //
2010         // Pass in some standard flags then iterate over the graph we've discovered
2011         // in `cargo metadata` with the maps above and figure out what `-p`
2012         // arguments need to get passed.
2013         if test_kind.subcommand() == "test" && !builder.fail_fast {
2014             cargo.arg("--no-fail-fast");
2015         }
2016         match builder.doc_tests {
2017             DocTests::Only => {
2018                 cargo.arg("--doc");
2019             }
2020             DocTests::No => {
2021                 cargo.args(&["--lib", "--bins", "--examples", "--tests", "--benches"]);
2022             }
2023             DocTests::Yes => {}
2024         }
2025
2026         for krate in &self.crates {
2027             cargo.arg("-p").arg(krate);
2028         }
2029
2030         // The tests are going to run with the *target* libraries, so we need to
2031         // ensure that those libraries show up in the LD_LIBRARY_PATH equivalent.
2032         //
2033         // Note that to run the compiler we need to run with the *host* libraries,
2034         // but our wrapper scripts arrange for that to be the case anyway.
2035         let mut dylib_path = dylib_path();
2036         dylib_path.insert(0, PathBuf::from(&*builder.sysroot_libdir(compiler, target)));
2037         cargo.env(dylib_path_var(), env::join_paths(&dylib_path).unwrap());
2038
2039         cargo.arg("--");
2040         cargo.args(&builder.config.cmd.test_args());
2041
2042         if !builder.config.verbose_tests {
2043             cargo.arg("--quiet");
2044         }
2045
2046         if target.contains("emscripten") {
2047             cargo.env(
2048                 format!("CARGO_TARGET_{}_RUNNER", envify(&target.triple)),
2049                 builder.config.nodejs.as_ref().expect("nodejs not configured"),
2050             );
2051         } else if target.starts_with("wasm32") {
2052             let node = builder.config.nodejs.as_ref().expect("nodejs not configured");
2053             let runner =
2054                 format!("{} {}/src/etc/wasm32-shim.js", node.display(), builder.src.display());
2055             cargo.env(format!("CARGO_TARGET_{}_RUNNER", envify(&target.triple)), &runner);
2056         } else if builder.remote_tested(target) {
2057             cargo.env(
2058                 format!("CARGO_TARGET_{}_RUNNER", envify(&target.triple)),
2059                 format!("{} run 0", builder.tool_exe(Tool::RemoteTestClient).display()),
2060             );
2061         }
2062
2063         builder.info(&format!(
2064             "{} {:?} stage{} ({} -> {})",
2065             test_kind, self.crates, compiler.stage, &compiler.host, target
2066         ));
2067         let _time = util::timeit(&builder);
2068         try_run(builder, &mut cargo.into());
2069     }
2070 }
2071
2072 /// Rustdoc is special in various ways, which is why this step is different from `Crate`.
2073 #[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
2074 pub struct CrateRustdoc {
2075     host: TargetSelection,
2076     test_kind: TestKind,
2077 }
2078
2079 impl Step for CrateRustdoc {
2080     type Output = ();
2081     const DEFAULT: bool = true;
2082     const ONLY_HOSTS: bool = true;
2083
2084     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
2085         run.paths(&["src/librustdoc", "src/tools/rustdoc"])
2086     }
2087
2088     fn make_run(run: RunConfig<'_>) {
2089         let builder = run.builder;
2090
2091         let test_kind = builder.kind.into();
2092
2093         builder.ensure(CrateRustdoc { host: run.target, test_kind });
2094     }
2095
2096     fn run(self, builder: &Builder<'_>) {
2097         let test_kind = self.test_kind;
2098         let target = self.host;
2099
2100         let compiler = if builder.download_rustc() {
2101             builder.compiler(builder.top_stage, target)
2102         } else {
2103             // Use the previous stage compiler to reuse the artifacts that are
2104             // created when running compiletest for src/test/rustdoc. If this used
2105             // `compiler`, then it would cause rustdoc to be built *again*, which
2106             // isn't really necessary.
2107             builder.compiler_for(builder.top_stage, target, target)
2108         };
2109         builder.ensure(compile::Rustc::new(compiler, target));
2110
2111         let mut cargo = tool::prepare_tool_cargo(
2112             builder,
2113             compiler,
2114             Mode::ToolRustc,
2115             target,
2116             test_kind.subcommand(),
2117             "src/tools/rustdoc",
2118             SourceType::InTree,
2119             &[],
2120         );
2121         if test_kind.subcommand() == "test" && !builder.fail_fast {
2122             cargo.arg("--no-fail-fast");
2123         }
2124         match builder.doc_tests {
2125             DocTests::Only => {
2126                 cargo.arg("--doc");
2127             }
2128             DocTests::No => {
2129                 cargo.args(&["--lib", "--bins", "--examples", "--tests", "--benches"]);
2130             }
2131             DocTests::Yes => {}
2132         }
2133
2134         cargo.arg("-p").arg("rustdoc:0.0.0");
2135
2136         cargo.arg("--");
2137         cargo.args(&builder.config.cmd.test_args());
2138
2139         if self.host.contains("musl") {
2140             cargo.arg("'-Ctarget-feature=-crt-static'");
2141         }
2142
2143         // This is needed for running doctests on librustdoc. This is a bit of
2144         // an unfortunate interaction with how bootstrap works and how cargo
2145         // sets up the dylib path, and the fact that the doctest (in
2146         // html/markdown.rs) links to rustc-private libs. For stage1, the
2147         // compiler host dylibs (in stage1/lib) are not the same as the target
2148         // dylibs (in stage1/lib/rustlib/...). This is different from a normal
2149         // rust distribution where they are the same.
2150         //
2151         // On the cargo side, normal tests use `target_process` which handles
2152         // setting up the dylib for a *target* (stage1/lib/rustlib/... in this
2153         // case). However, for doctests it uses `rustdoc_process` which only
2154         // sets up the dylib path for the *host* (stage1/lib), which is the
2155         // wrong directory.
2156         //
2157         // Recall that we special-cased `compiler_for(top_stage)` above, so we always use stage1.
2158         //
2159         // It should be considered to just stop running doctests on
2160         // librustdoc. There is only one test, and it doesn't look too
2161         // important. There might be other ways to avoid this, but it seems
2162         // pretty convoluted.
2163         //
2164         // See also https://github.com/rust-lang/rust/issues/13983 where the
2165         // host vs target dylibs for rustdoc are consistently tricky to deal
2166         // with.
2167         //
2168         // Note that this set the host libdir for `download_rustc`, which uses a normal rust distribution.
2169         let libdir = if builder.download_rustc() {
2170             builder.rustc_libdir(compiler)
2171         } else {
2172             builder.sysroot_libdir(compiler, target).to_path_buf()
2173         };
2174         let mut dylib_path = dylib_path();
2175         dylib_path.insert(0, PathBuf::from(&*libdir));
2176         cargo.env(dylib_path_var(), env::join_paths(&dylib_path).unwrap());
2177
2178         if !builder.config.verbose_tests {
2179             cargo.arg("--quiet");
2180         }
2181
2182         builder.info(&format!(
2183             "{} rustdoc stage{} ({} -> {})",
2184             test_kind, compiler.stage, &compiler.host, target
2185         ));
2186         let _time = util::timeit(&builder);
2187
2188         try_run(builder, &mut cargo.into());
2189     }
2190 }
2191
2192 #[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
2193 pub struct CrateRustdocJsonTypes {
2194     host: TargetSelection,
2195     test_kind: TestKind,
2196 }
2197
2198 impl Step for CrateRustdocJsonTypes {
2199     type Output = ();
2200     const DEFAULT: bool = true;
2201     const ONLY_HOSTS: bool = true;
2202
2203     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
2204         run.path("src/rustdoc-json-types")
2205     }
2206
2207     fn make_run(run: RunConfig<'_>) {
2208         let builder = run.builder;
2209
2210         let test_kind = builder.kind.into();
2211
2212         builder.ensure(CrateRustdocJsonTypes { host: run.target, test_kind });
2213     }
2214
2215     fn run(self, builder: &Builder<'_>) {
2216         let test_kind = self.test_kind;
2217         let target = self.host;
2218
2219         // Use the previous stage compiler to reuse the artifacts that are
2220         // created when running compiletest for src/test/rustdoc. If this used
2221         // `compiler`, then it would cause rustdoc to be built *again*, which
2222         // isn't really necessary.
2223         let compiler = builder.compiler_for(builder.top_stage, target, target);
2224         builder.ensure(compile::Rustc::new(compiler, target));
2225
2226         let mut cargo = tool::prepare_tool_cargo(
2227             builder,
2228             compiler,
2229             Mode::ToolRustc,
2230             target,
2231             test_kind.subcommand(),
2232             "src/rustdoc-json-types",
2233             SourceType::InTree,
2234             &[],
2235         );
2236         if test_kind.subcommand() == "test" && !builder.fail_fast {
2237             cargo.arg("--no-fail-fast");
2238         }
2239
2240         cargo.arg("-p").arg("rustdoc-json-types");
2241
2242         cargo.arg("--");
2243         cargo.args(&builder.config.cmd.test_args());
2244
2245         if self.host.contains("musl") {
2246             cargo.arg("'-Ctarget-feature=-crt-static'");
2247         }
2248
2249         if !builder.config.verbose_tests {
2250             cargo.arg("--quiet");
2251         }
2252
2253         builder.info(&format!(
2254             "{} rustdoc-json-types stage{} ({} -> {})",
2255             test_kind, compiler.stage, &compiler.host, target
2256         ));
2257         let _time = util::timeit(&builder);
2258
2259         try_run(builder, &mut cargo.into());
2260     }
2261 }
2262
2263 /// Some test suites are run inside emulators or on remote devices, and most
2264 /// of our test binaries are linked dynamically which means we need to ship
2265 /// the standard library and such to the emulator ahead of time. This step
2266 /// represents this and is a dependency of all test suites.
2267 ///
2268 /// Most of the time this is a no-op. For some steps such as shipping data to
2269 /// QEMU we have to build our own tools so we've got conditional dependencies
2270 /// on those programs as well. Note that the remote test client is built for
2271 /// the build target (us) and the server is built for the target.
2272 #[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
2273 pub struct RemoteCopyLibs {
2274     compiler: Compiler,
2275     target: TargetSelection,
2276 }
2277
2278 impl Step for RemoteCopyLibs {
2279     type Output = ();
2280
2281     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
2282         run.never()
2283     }
2284
2285     fn run(self, builder: &Builder<'_>) {
2286         let compiler = self.compiler;
2287         let target = self.target;
2288         if !builder.remote_tested(target) {
2289             return;
2290         }
2291
2292         builder.ensure(compile::Std::new(compiler, target));
2293
2294         builder.info(&format!("REMOTE copy libs to emulator ({})", target));
2295
2296         let server = builder.ensure(tool::RemoteTestServer { compiler, target });
2297
2298         // Spawn the emulator and wait for it to come online
2299         let tool = builder.tool_exe(Tool::RemoteTestClient);
2300         let mut cmd = Command::new(&tool);
2301         cmd.arg("spawn-emulator").arg(target.triple).arg(&server).arg(builder.tempdir());
2302         if let Some(rootfs) = builder.qemu_rootfs(target) {
2303             cmd.arg(rootfs);
2304         }
2305         builder.run(&mut cmd);
2306
2307         // Push all our dylibs to the emulator
2308         for f in t!(builder.sysroot_libdir(compiler, target).read_dir()) {
2309             let f = t!(f);
2310             let name = f.file_name().into_string().unwrap();
2311             if util::is_dylib(&name) {
2312                 builder.run(Command::new(&tool).arg("push").arg(f.path()));
2313             }
2314         }
2315     }
2316 }
2317
2318 #[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
2319 pub struct Distcheck;
2320
2321 impl Step for Distcheck {
2322     type Output = ();
2323
2324     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
2325         run.alias("distcheck")
2326     }
2327
2328     fn make_run(run: RunConfig<'_>) {
2329         run.builder.ensure(Distcheck);
2330     }
2331
2332     /// Runs "distcheck", a 'make check' from a tarball
2333     fn run(self, builder: &Builder<'_>) {
2334         builder.info("Distcheck");
2335         let dir = builder.tempdir().join("distcheck");
2336         let _ = fs::remove_dir_all(&dir);
2337         t!(fs::create_dir_all(&dir));
2338
2339         // Guarantee that these are built before we begin running.
2340         builder.ensure(dist::PlainSourceTarball);
2341         builder.ensure(dist::Src);
2342
2343         let mut cmd = Command::new("tar");
2344         cmd.arg("-xf")
2345             .arg(builder.ensure(dist::PlainSourceTarball).tarball())
2346             .arg("--strip-components=1")
2347             .current_dir(&dir);
2348         builder.run(&mut cmd);
2349         builder.run(
2350             Command::new("./configure")
2351                 .args(&builder.config.configure_args)
2352                 .arg("--enable-vendor")
2353                 .current_dir(&dir),
2354         );
2355         builder.run(
2356             Command::new(util::make(&builder.config.build.triple)).arg("check").current_dir(&dir),
2357         );
2358
2359         // Now make sure that rust-src has all of libstd's dependencies
2360         builder.info("Distcheck rust-src");
2361         let dir = builder.tempdir().join("distcheck-src");
2362         let _ = fs::remove_dir_all(&dir);
2363         t!(fs::create_dir_all(&dir));
2364
2365         let mut cmd = Command::new("tar");
2366         cmd.arg("-xf")
2367             .arg(builder.ensure(dist::Src).tarball())
2368             .arg("--strip-components=1")
2369             .current_dir(&dir);
2370         builder.run(&mut cmd);
2371
2372         let toml = dir.join("rust-src/lib/rustlib/src/rust/library/std/Cargo.toml");
2373         builder.run(
2374             Command::new(&builder.initial_cargo)
2375                 .arg("generate-lockfile")
2376                 .arg("--manifest-path")
2377                 .arg(&toml)
2378                 .current_dir(&dir),
2379         );
2380     }
2381 }
2382
2383 #[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
2384 pub struct Bootstrap;
2385
2386 impl Step for Bootstrap {
2387     type Output = ();
2388     const DEFAULT: bool = true;
2389     const ONLY_HOSTS: bool = true;
2390
2391     /// Tests the build system itself.
2392     fn run(self, builder: &Builder<'_>) {
2393         let mut check_bootstrap = Command::new(&builder.python());
2394         check_bootstrap.arg("bootstrap_test.py").current_dir(builder.src.join("src/bootstrap/"));
2395         try_run(builder, &mut check_bootstrap);
2396
2397         let mut cmd = Command::new(&builder.initial_cargo);
2398         cmd.arg("test")
2399             .current_dir(builder.src.join("src/bootstrap"))
2400             .env("RUSTFLAGS", "-Cdebuginfo=2")
2401             .env("CARGO_TARGET_DIR", builder.out.join("bootstrap"))
2402             .env("RUSTC_BOOTSTRAP", "1")
2403             .env("RUSTDOC", builder.rustdoc(builder.compiler(0, builder.build.build)))
2404             .env("RUSTC", &builder.initial_rustc);
2405         if let Some(flags) = option_env!("RUSTFLAGS") {
2406             // Use the same rustc flags for testing as for "normal" compilation,
2407             // so that Cargo doesn’t recompile the entire dependency graph every time:
2408             // https://github.com/rust-lang/rust/issues/49215
2409             cmd.env("RUSTFLAGS", flags);
2410         }
2411         if !builder.fail_fast {
2412             cmd.arg("--no-fail-fast");
2413         }
2414         match builder.doc_tests {
2415             DocTests::Only => {
2416                 cmd.arg("--doc");
2417             }
2418             DocTests::No => {
2419                 cmd.args(&["--lib", "--bins", "--examples", "--tests", "--benches"]);
2420             }
2421             DocTests::Yes => {}
2422         }
2423
2424         cmd.arg("--").args(&builder.config.cmd.test_args());
2425         // rustbuild tests are racy on directory creation so just run them one at a time.
2426         // Since there's not many this shouldn't be a problem.
2427         cmd.arg("--test-threads=1");
2428         try_run(builder, &mut cmd);
2429     }
2430
2431     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
2432         run.path("src/bootstrap")
2433     }
2434
2435     fn make_run(run: RunConfig<'_>) {
2436         run.builder.ensure(Bootstrap);
2437     }
2438 }
2439
2440 #[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
2441 pub struct TierCheck {
2442     pub compiler: Compiler,
2443 }
2444
2445 impl Step for TierCheck {
2446     type Output = ();
2447     const DEFAULT: bool = true;
2448     const ONLY_HOSTS: bool = true;
2449
2450     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
2451         run.path("src/tools/tier-check")
2452     }
2453
2454     fn make_run(run: RunConfig<'_>) {
2455         let compiler =
2456             run.builder.compiler_for(run.builder.top_stage, run.builder.build.build, run.target);
2457         run.builder.ensure(TierCheck { compiler });
2458     }
2459
2460     /// Tests the Platform Support page in the rustc book.
2461     fn run(self, builder: &Builder<'_>) {
2462         builder.ensure(compile::Std::new(self.compiler, self.compiler.host));
2463         let mut cargo = tool::prepare_tool_cargo(
2464             builder,
2465             self.compiler,
2466             Mode::ToolStd,
2467             self.compiler.host,
2468             "run",
2469             "src/tools/tier-check",
2470             SourceType::InTree,
2471             &[],
2472         );
2473         cargo.arg(builder.src.join("src/doc/rustc/src/platform-support.md"));
2474         cargo.arg(&builder.rustc(self.compiler));
2475         if builder.is_verbose() {
2476             cargo.arg("--verbose");
2477         }
2478
2479         builder.info("platform support check");
2480         try_run(builder, &mut cargo.into());
2481     }
2482 }
2483
2484 #[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
2485 pub struct ReplacePlaceholderTest;
2486
2487 impl Step for ReplacePlaceholderTest {
2488     type Output = ();
2489     const ONLY_HOSTS: bool = true;
2490     const DEFAULT: bool = true;
2491
2492     /// Ensure the version placeholder replacement tool builds
2493     fn run(self, builder: &Builder<'_>) {
2494         builder.info("build check for version replacement placeholder");
2495
2496         // Test the version placeholder replacement tool itself.
2497         let bootstrap_host = builder.config.build;
2498         let compiler = builder.compiler(0, bootstrap_host);
2499         let cargo = tool::prepare_tool_cargo(
2500             builder,
2501             compiler,
2502             Mode::ToolBootstrap,
2503             bootstrap_host,
2504             "test",
2505             "src/tools/replace-version-placeholder",
2506             SourceType::InTree,
2507             &[],
2508         );
2509         try_run(builder, &mut cargo.into());
2510     }
2511
2512     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
2513         run.path("src/tools/replace-version-placeholder")
2514     }
2515
2516     fn make_run(run: RunConfig<'_>) {
2517         run.builder.ensure(Self);
2518     }
2519 }
2520
2521 #[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
2522 pub struct LintDocs {
2523     pub compiler: Compiler,
2524     pub target: TargetSelection,
2525 }
2526
2527 impl Step for LintDocs {
2528     type Output = ();
2529     const DEFAULT: bool = true;
2530     const ONLY_HOSTS: bool = true;
2531
2532     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
2533         run.path("src/tools/lint-docs")
2534     }
2535
2536     fn make_run(run: RunConfig<'_>) {
2537         run.builder.ensure(LintDocs {
2538             compiler: run.builder.compiler(run.builder.top_stage, run.builder.config.build),
2539             target: run.target,
2540         });
2541     }
2542
2543     /// Tests that the lint examples in the rustc book generate the correct
2544     /// lints and have the expected format.
2545     fn run(self, builder: &Builder<'_>) {
2546         builder.ensure(crate::doc::RustcBook {
2547             compiler: self.compiler,
2548             target: self.target,
2549             validate: true,
2550         });
2551     }
2552 }