]> git.lizzy.rs Git - rust.git/blob - src/bootstrap/test.rs
Rollup merge of #101142 - nnethercote:improve-hir-stats, r=davidtwco
[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         }
1345
1346         if mode == "run-make" {
1347             let rust_demangler = builder
1348                 .ensure(tool::RustDemangler {
1349                     compiler,
1350                     target: compiler.host,
1351                     extra_features: Vec::new(),
1352                 })
1353                 .expect("in-tree tool");
1354             cmd.arg("--rust-demangler-path").arg(rust_demangler);
1355         }
1356
1357         cmd.arg("--src-base").arg(builder.src.join("src/test").join(suite));
1358         cmd.arg("--build-base").arg(testdir(builder, compiler.host).join(suite));
1359         cmd.arg("--stage-id").arg(format!("stage{}-{}", compiler.stage, target));
1360         cmd.arg("--suite").arg(suite);
1361         cmd.arg("--mode").arg(mode);
1362         cmd.arg("--target").arg(target.rustc_target_arg());
1363         cmd.arg("--host").arg(&*compiler.host.triple);
1364         cmd.arg("--llvm-filecheck").arg(builder.llvm_filecheck(builder.config.build));
1365
1366         if builder.config.cmd.bless() {
1367             cmd.arg("--bless");
1368         }
1369
1370         if builder.config.cmd.force_rerun() {
1371             cmd.arg("--force-rerun");
1372         }
1373
1374         let compare_mode =
1375             builder.config.cmd.compare_mode().or_else(|| {
1376                 if builder.config.test_compare_mode { self.compare_mode } else { None }
1377             });
1378
1379         if let Some(ref pass) = builder.config.cmd.pass() {
1380             cmd.arg("--pass");
1381             cmd.arg(pass);
1382         }
1383
1384         if let Some(ref run) = builder.config.cmd.run() {
1385             cmd.arg("--run");
1386             cmd.arg(run);
1387         }
1388
1389         if let Some(ref nodejs) = builder.config.nodejs {
1390             cmd.arg("--nodejs").arg(nodejs);
1391         }
1392         if let Some(ref npm) = builder.config.npm {
1393             cmd.arg("--npm").arg(npm);
1394         }
1395         if builder.config.rust_optimize_tests {
1396             cmd.arg("--optimize-tests");
1397         }
1398         let mut flags = if is_rustdoc { Vec::new() } else { vec!["-Crpath".to_string()] };
1399         flags.push(format!("-Cdebuginfo={}", builder.config.rust_debuginfo_level_tests));
1400         flags.push(builder.config.cmd.rustc_args().join(" "));
1401
1402         if let Some(linker) = builder.linker(target) {
1403             cmd.arg("--linker").arg(linker);
1404         }
1405
1406         let mut hostflags = flags.clone();
1407         hostflags.push(format!("-Lnative={}", builder.test_helpers_out(compiler.host).display()));
1408         hostflags.extend(builder.lld_flags(compiler.host));
1409         cmd.arg("--host-rustcflags").arg(hostflags.join(" "));
1410
1411         let mut targetflags = flags;
1412         targetflags.push(format!("-Lnative={}", builder.test_helpers_out(target).display()));
1413         targetflags.extend(builder.lld_flags(target));
1414         cmd.arg("--target-rustcflags").arg(targetflags.join(" "));
1415
1416         cmd.arg("--python").arg(builder.python());
1417
1418         if let Some(ref gdb) = builder.config.gdb {
1419             cmd.arg("--gdb").arg(gdb);
1420         }
1421
1422         let run = |cmd: &mut Command| {
1423             cmd.output().map(|output| {
1424                 String::from_utf8_lossy(&output.stdout)
1425                     .lines()
1426                     .next()
1427                     .unwrap_or_else(|| panic!("{:?} failed {:?}", cmd, output))
1428                     .to_string()
1429             })
1430         };
1431         let lldb_exe = "lldb";
1432         let lldb_version = Command::new(lldb_exe)
1433             .arg("--version")
1434             .output()
1435             .map(|output| String::from_utf8_lossy(&output.stdout).to_string())
1436             .ok();
1437         if let Some(ref vers) = lldb_version {
1438             cmd.arg("--lldb-version").arg(vers);
1439             let lldb_python_dir = run(Command::new(lldb_exe).arg("-P")).ok();
1440             if let Some(ref dir) = lldb_python_dir {
1441                 cmd.arg("--lldb-python-dir").arg(dir);
1442             }
1443         }
1444
1445         if util::forcing_clang_based_tests() {
1446             let clang_exe = builder.llvm_out(target).join("bin").join("clang");
1447             cmd.arg("--run-clang-based-tests-with").arg(clang_exe);
1448         }
1449
1450         for exclude in &builder.config.exclude {
1451             cmd.arg("--skip");
1452             cmd.arg(&exclude.path);
1453         }
1454
1455         // Get paths from cmd args
1456         let paths = match &builder.config.cmd {
1457             Subcommand::Test { ref paths, .. } => &paths[..],
1458             _ => &[],
1459         };
1460
1461         // Get test-args by striping suite path
1462         let mut test_args: Vec<&str> = paths
1463             .iter()
1464             .filter_map(|p| util::is_valid_test_suite_arg(p, suite_path, builder))
1465             .collect();
1466
1467         test_args.append(&mut builder.config.cmd.test_args());
1468
1469         // On Windows, replace forward slashes in test-args by backslashes
1470         // so the correct filters are passed to libtest
1471         if cfg!(windows) {
1472             let test_args_win: Vec<String> =
1473                 test_args.iter().map(|s| s.replace("/", "\\")).collect();
1474             cmd.args(&test_args_win);
1475         } else {
1476             cmd.args(&test_args);
1477         }
1478
1479         if builder.is_verbose() {
1480             cmd.arg("--verbose");
1481         }
1482
1483         if !builder.config.verbose_tests {
1484             cmd.arg("--quiet");
1485         }
1486
1487         let mut llvm_components_passed = false;
1488         let mut copts_passed = false;
1489         if builder.config.llvm_enabled() {
1490             let llvm_config = builder.ensure(native::Llvm { target: builder.config.build });
1491             if !builder.config.dry_run {
1492                 let llvm_version = output(Command::new(&llvm_config).arg("--version"));
1493                 let llvm_components = output(Command::new(&llvm_config).arg("--components"));
1494                 // Remove trailing newline from llvm-config output.
1495                 cmd.arg("--llvm-version")
1496                     .arg(llvm_version.trim())
1497                     .arg("--llvm-components")
1498                     .arg(llvm_components.trim());
1499                 llvm_components_passed = true;
1500             }
1501             if !builder.is_rust_llvm(target) {
1502                 cmd.arg("--system-llvm");
1503             }
1504
1505             // Tests that use compiler libraries may inherit the `-lLLVM` link
1506             // requirement, but the `-L` library path is not propagated across
1507             // separate compilations. We can add LLVM's library path to the
1508             // platform-specific environment variable as a workaround.
1509             if !builder.config.dry_run && suite.ends_with("fulldeps") {
1510                 let llvm_libdir = output(Command::new(&llvm_config).arg("--libdir"));
1511                 add_link_lib_path(vec![llvm_libdir.trim().into()], &mut cmd);
1512             }
1513
1514             // Only pass correct values for these flags for the `run-make` suite as it
1515             // requires that a C++ compiler was configured which isn't always the case.
1516             if !builder.config.dry_run && matches!(suite, "run-make" | "run-make-fulldeps") {
1517                 // The llvm/bin directory contains many useful cross-platform
1518                 // tools. Pass the path to run-make tests so they can use them.
1519                 let llvm_bin_path = llvm_config
1520                     .parent()
1521                     .expect("Expected llvm-config to be contained in directory");
1522                 assert!(llvm_bin_path.is_dir());
1523                 cmd.arg("--llvm-bin-dir").arg(llvm_bin_path);
1524
1525                 // If LLD is available, add it to the PATH
1526                 if builder.config.lld_enabled {
1527                     let lld_install_root =
1528                         builder.ensure(native::Lld { target: builder.config.build });
1529
1530                     let lld_bin_path = lld_install_root.join("bin");
1531
1532                     let old_path = env::var_os("PATH").unwrap_or_default();
1533                     let new_path = env::join_paths(
1534                         std::iter::once(lld_bin_path).chain(env::split_paths(&old_path)),
1535                     )
1536                     .expect("Could not add LLD bin path to PATH");
1537                     cmd.env("PATH", new_path);
1538                 }
1539             }
1540         }
1541
1542         // Only pass correct values for these flags for the `run-make` suite as it
1543         // requires that a C++ compiler was configured which isn't always the case.
1544         if !builder.config.dry_run && matches!(suite, "run-make" | "run-make-fulldeps") {
1545             cmd.arg("--cc")
1546                 .arg(builder.cc(target))
1547                 .arg("--cxx")
1548                 .arg(builder.cxx(target).unwrap())
1549                 .arg("--cflags")
1550                 .arg(builder.cflags(target, GitRepo::Rustc, CLang::C).join(" "))
1551                 .arg("--cxxflags")
1552                 .arg(builder.cflags(target, GitRepo::Rustc, CLang::Cxx).join(" "));
1553             copts_passed = true;
1554             if let Some(ar) = builder.ar(target) {
1555                 cmd.arg("--ar").arg(ar);
1556             }
1557         }
1558
1559         if !llvm_components_passed {
1560             cmd.arg("--llvm-components").arg("");
1561         }
1562         if !copts_passed {
1563             cmd.arg("--cc")
1564                 .arg("")
1565                 .arg("--cxx")
1566                 .arg("")
1567                 .arg("--cflags")
1568                 .arg("")
1569                 .arg("--cxxflags")
1570                 .arg("");
1571         }
1572
1573         if builder.remote_tested(target) {
1574             cmd.arg("--remote-test-client").arg(builder.tool_exe(Tool::RemoteTestClient));
1575         }
1576
1577         // Running a C compiler on MSVC requires a few env vars to be set, to be
1578         // sure to set them here.
1579         //
1580         // Note that if we encounter `PATH` we make sure to append to our own `PATH`
1581         // rather than stomp over it.
1582         if target.contains("msvc") {
1583             for &(ref k, ref v) in builder.cc[&target].env() {
1584                 if k != "PATH" {
1585                     cmd.env(k, v);
1586                 }
1587             }
1588         }
1589         cmd.env("RUSTC_BOOTSTRAP", "1");
1590         // Override the rustc version used in symbol hashes to reduce the amount of normalization
1591         // needed when diffing test output.
1592         cmd.env("RUSTC_FORCE_RUSTC_VERSION", "compiletest");
1593         cmd.env("DOC_RUST_LANG_ORG_CHANNEL", builder.doc_rust_lang_org_channel());
1594         builder.add_rust_test_threads(&mut cmd);
1595
1596         if builder.config.sanitizers_enabled(target) {
1597             cmd.env("RUSTC_SANITIZER_SUPPORT", "1");
1598         }
1599
1600         if builder.config.profiler_enabled(target) {
1601             cmd.env("RUSTC_PROFILER_SUPPORT", "1");
1602         }
1603
1604         cmd.env("RUST_TEST_TMPDIR", builder.tempdir());
1605
1606         cmd.arg("--adb-path").arg("adb");
1607         cmd.arg("--adb-test-dir").arg(ADB_TEST_DIR);
1608         if target.contains("android") {
1609             // Assume that cc for this target comes from the android sysroot
1610             cmd.arg("--android-cross-path")
1611                 .arg(builder.cc(target).parent().unwrap().parent().unwrap());
1612         } else {
1613             cmd.arg("--android-cross-path").arg("");
1614         }
1615
1616         if builder.config.cmd.rustfix_coverage() {
1617             cmd.arg("--rustfix-coverage");
1618         }
1619
1620         cmd.env("BOOTSTRAP_CARGO", &builder.initial_cargo);
1621
1622         cmd.arg("--channel").arg(&builder.config.channel);
1623
1624         builder.ci_env.force_coloring_in_ci(&mut cmd);
1625
1626         builder.info(&format!(
1627             "Check compiletest suite={} mode={} ({} -> {})",
1628             suite, mode, &compiler.host, target
1629         ));
1630         let _time = util::timeit(&builder);
1631         try_run(builder, &mut cmd);
1632
1633         if let Some(compare_mode) = compare_mode {
1634             cmd.arg("--compare-mode").arg(compare_mode);
1635             builder.info(&format!(
1636                 "Check compiletest suite={} mode={} compare_mode={} ({} -> {})",
1637                 suite, mode, compare_mode, &compiler.host, target
1638             ));
1639             let _time = util::timeit(&builder);
1640             try_run(builder, &mut cmd);
1641         }
1642     }
1643 }
1644
1645 #[derive(Debug, Clone, PartialEq, Eq, Hash)]
1646 struct BookTest {
1647     compiler: Compiler,
1648     path: PathBuf,
1649     name: &'static str,
1650     is_ext_doc: bool,
1651 }
1652
1653 impl Step for BookTest {
1654     type Output = ();
1655     const ONLY_HOSTS: bool = true;
1656
1657     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
1658         run.never()
1659     }
1660
1661     /// Runs the documentation tests for a book in `src/doc`.
1662     ///
1663     /// This uses the `rustdoc` that sits next to `compiler`.
1664     fn run(self, builder: &Builder<'_>) {
1665         // External docs are different from local because:
1666         // - Some books need pre-processing by mdbook before being tested.
1667         // - They need to save their state to toolstate.
1668         // - They are only tested on the "checktools" builders.
1669         //
1670         // The local docs are tested by default, and we don't want to pay the
1671         // cost of building mdbook, so they use `rustdoc --test` directly.
1672         // Also, the unstable book is special because SUMMARY.md is generated,
1673         // so it is easier to just run `rustdoc` on its files.
1674         if self.is_ext_doc {
1675             self.run_ext_doc(builder);
1676         } else {
1677             self.run_local_doc(builder);
1678         }
1679     }
1680 }
1681
1682 impl BookTest {
1683     /// This runs the equivalent of `mdbook test` (via the rustbook wrapper)
1684     /// which in turn runs `rustdoc --test` on each file in the book.
1685     fn run_ext_doc(self, builder: &Builder<'_>) {
1686         let compiler = self.compiler;
1687
1688         builder.ensure(compile::Std::new(compiler, compiler.host));
1689
1690         // mdbook just executes a binary named "rustdoc", so we need to update
1691         // PATH so that it points to our rustdoc.
1692         let mut rustdoc_path = builder.rustdoc(compiler);
1693         rustdoc_path.pop();
1694         let old_path = env::var_os("PATH").unwrap_or_default();
1695         let new_path = env::join_paths(iter::once(rustdoc_path).chain(env::split_paths(&old_path)))
1696             .expect("could not add rustdoc to PATH");
1697
1698         let mut rustbook_cmd = builder.tool_cmd(Tool::Rustbook);
1699         let path = builder.src.join(&self.path);
1700         rustbook_cmd.env("PATH", new_path).arg("test").arg(path);
1701         builder.add_rust_test_threads(&mut rustbook_cmd);
1702         builder.info(&format!("Testing rustbook {}", self.path.display()));
1703         let _time = util::timeit(&builder);
1704         let toolstate = if try_run(builder, &mut rustbook_cmd) {
1705             ToolState::TestPass
1706         } else {
1707             ToolState::TestFail
1708         };
1709         builder.save_toolstate(self.name, toolstate);
1710     }
1711
1712     /// This runs `rustdoc --test` on all `.md` files in the path.
1713     fn run_local_doc(self, builder: &Builder<'_>) {
1714         let compiler = self.compiler;
1715
1716         builder.ensure(compile::Std::new(compiler, compiler.host));
1717
1718         // Do a breadth-first traversal of the `src/doc` directory and just run
1719         // tests for all files that end in `*.md`
1720         let mut stack = vec![builder.src.join(self.path)];
1721         let _time = util::timeit(&builder);
1722         let mut files = Vec::new();
1723         while let Some(p) = stack.pop() {
1724             if p.is_dir() {
1725                 stack.extend(t!(p.read_dir()).map(|p| t!(p).path()));
1726                 continue;
1727             }
1728
1729             if p.extension().and_then(|s| s.to_str()) != Some("md") {
1730                 continue;
1731             }
1732
1733             files.push(p);
1734         }
1735
1736         files.sort();
1737
1738         for file in files {
1739             markdown_test(builder, compiler, &file);
1740         }
1741     }
1742 }
1743
1744 macro_rules! test_book {
1745     ($($name:ident, $path:expr, $book_name:expr, default=$default:expr;)+) => {
1746         $(
1747             #[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
1748             pub struct $name {
1749                 compiler: Compiler,
1750             }
1751
1752             impl Step for $name {
1753                 type Output = ();
1754                 const DEFAULT: bool = $default;
1755                 const ONLY_HOSTS: bool = true;
1756
1757                 fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
1758                     run.path($path)
1759                 }
1760
1761                 fn make_run(run: RunConfig<'_>) {
1762                     run.builder.ensure($name {
1763                         compiler: run.builder.compiler(run.builder.top_stage, run.target),
1764                     });
1765                 }
1766
1767                 fn run(self, builder: &Builder<'_>) {
1768                     builder.ensure(BookTest {
1769                         compiler: self.compiler,
1770                         path: PathBuf::from($path),
1771                         name: $book_name,
1772                         is_ext_doc: !$default,
1773                     });
1774                 }
1775             }
1776         )+
1777     }
1778 }
1779
1780 test_book!(
1781     Nomicon, "src/doc/nomicon", "nomicon", default=false;
1782     Reference, "src/doc/reference", "reference", default=false;
1783     RustdocBook, "src/doc/rustdoc", "rustdoc", default=true;
1784     RustcBook, "src/doc/rustc", "rustc", default=true;
1785     RustByExample, "src/doc/rust-by-example", "rust-by-example", default=false;
1786     EmbeddedBook, "src/doc/embedded-book", "embedded-book", default=false;
1787     TheBook, "src/doc/book", "book", default=false;
1788     UnstableBook, "src/doc/unstable-book", "unstable-book", default=true;
1789     EditionGuide, "src/doc/edition-guide", "edition-guide", default=false;
1790 );
1791
1792 #[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
1793 pub struct ErrorIndex {
1794     compiler: Compiler,
1795 }
1796
1797 impl Step for ErrorIndex {
1798     type Output = ();
1799     const DEFAULT: bool = true;
1800     const ONLY_HOSTS: bool = true;
1801
1802     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
1803         run.path("src/tools/error_index_generator")
1804     }
1805
1806     fn make_run(run: RunConfig<'_>) {
1807         // error_index_generator depends on librustdoc. Use the compiler that
1808         // is normally used to build rustdoc for other tests (like compiletest
1809         // tests in src/test/rustdoc) so that it shares the same artifacts.
1810         let compiler = run.builder.compiler(run.builder.top_stage, run.builder.config.build);
1811         run.builder.ensure(ErrorIndex { compiler });
1812     }
1813
1814     /// Runs the error index generator tool to execute the tests located in the error
1815     /// index.
1816     ///
1817     /// The `error_index_generator` tool lives in `src/tools` and is used to
1818     /// generate a markdown file from the error indexes of the code base which is
1819     /// then passed to `rustdoc --test`.
1820     fn run(self, builder: &Builder<'_>) {
1821         let compiler = self.compiler;
1822
1823         let dir = testdir(builder, compiler.host);
1824         t!(fs::create_dir_all(&dir));
1825         let output = dir.join("error-index.md");
1826
1827         let mut tool = tool::ErrorIndex::command(builder);
1828         tool.arg("markdown").arg(&output);
1829
1830         builder.info(&format!("Testing error-index stage{}", compiler.stage));
1831         let _time = util::timeit(&builder);
1832         builder.run_quiet(&mut tool);
1833         // The tests themselves need to link to std, so make sure it is
1834         // available.
1835         builder.ensure(compile::Std::new(compiler, compiler.host));
1836         markdown_test(builder, compiler, &output);
1837     }
1838 }
1839
1840 fn markdown_test(builder: &Builder<'_>, compiler: Compiler, markdown: &Path) -> bool {
1841     if let Ok(contents) = fs::read_to_string(markdown) {
1842         if !contents.contains("```") {
1843             return true;
1844         }
1845     }
1846
1847     builder.info(&format!("doc tests for: {}", markdown.display()));
1848     let mut cmd = builder.rustdoc_cmd(compiler);
1849     builder.add_rust_test_threads(&mut cmd);
1850     // allow for unstable options such as new editions
1851     cmd.arg("-Z");
1852     cmd.arg("unstable-options");
1853     cmd.arg("--test");
1854     cmd.arg(markdown);
1855     cmd.env("RUSTC_BOOTSTRAP", "1");
1856
1857     let test_args = builder.config.cmd.test_args().join(" ");
1858     cmd.arg("--test-args").arg(test_args);
1859
1860     if builder.config.verbose_tests {
1861         try_run(builder, &mut cmd)
1862     } else {
1863         try_run_quiet(builder, &mut cmd)
1864     }
1865 }
1866
1867 #[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
1868 pub struct RustcGuide;
1869
1870 impl Step for RustcGuide {
1871     type Output = ();
1872     const DEFAULT: bool = false;
1873     const ONLY_HOSTS: bool = true;
1874
1875     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
1876         run.path("src/doc/rustc-dev-guide")
1877     }
1878
1879     fn make_run(run: RunConfig<'_>) {
1880         run.builder.ensure(RustcGuide);
1881     }
1882
1883     fn run(self, builder: &Builder<'_>) {
1884         let relative_path = Path::new("src").join("doc").join("rustc-dev-guide");
1885         builder.update_submodule(&relative_path);
1886
1887         let src = builder.src.join(relative_path);
1888         let mut rustbook_cmd = builder.tool_cmd(Tool::Rustbook);
1889         let toolstate = if try_run(builder, rustbook_cmd.arg("linkcheck").arg(&src)) {
1890             ToolState::TestPass
1891         } else {
1892             ToolState::TestFail
1893         };
1894         builder.save_toolstate("rustc-dev-guide", toolstate);
1895     }
1896 }
1897
1898 #[derive(Debug, Clone, PartialEq, Eq, Hash)]
1899 pub struct CrateLibrustc {
1900     compiler: Compiler,
1901     target: TargetSelection,
1902     test_kind: TestKind,
1903     crates: Vec<Interned<String>>,
1904 }
1905
1906 impl Step for CrateLibrustc {
1907     type Output = ();
1908     const DEFAULT: bool = true;
1909     const ONLY_HOSTS: bool = true;
1910
1911     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
1912         run.crate_or_deps("rustc-main")
1913     }
1914
1915     fn make_run(run: RunConfig<'_>) {
1916         let builder = run.builder;
1917         let host = run.build_triple();
1918         let compiler = builder.compiler_for(builder.top_stage, host, host);
1919         let crates = run
1920             .paths
1921             .iter()
1922             .map(|p| builder.crate_paths[&p.assert_single_path().path].clone())
1923             .collect();
1924         let test_kind = builder.kind.into();
1925
1926         builder.ensure(CrateLibrustc { compiler, target: run.target, test_kind, crates });
1927     }
1928
1929     fn run(self, builder: &Builder<'_>) {
1930         builder.ensure(Crate {
1931             compiler: self.compiler,
1932             target: self.target,
1933             mode: Mode::Rustc,
1934             test_kind: self.test_kind,
1935             crates: self.crates,
1936         });
1937     }
1938 }
1939
1940 #[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
1941 pub struct Crate {
1942     pub compiler: Compiler,
1943     pub target: TargetSelection,
1944     pub mode: Mode,
1945     pub test_kind: TestKind,
1946     pub crates: Vec<Interned<String>>,
1947 }
1948
1949 impl Step for Crate {
1950     type Output = ();
1951     const DEFAULT: bool = true;
1952
1953     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
1954         run.crate_or_deps("test")
1955     }
1956
1957     fn make_run(run: RunConfig<'_>) {
1958         let builder = run.builder;
1959         let host = run.build_triple();
1960         let compiler = builder.compiler_for(builder.top_stage, host, host);
1961         let test_kind = builder.kind.into();
1962         let crates = run
1963             .paths
1964             .iter()
1965             .map(|p| builder.crate_paths[&p.assert_single_path().path].clone())
1966             .collect();
1967
1968         builder.ensure(Crate { compiler, target: run.target, mode: Mode::Std, test_kind, crates });
1969     }
1970
1971     /// Runs all unit tests plus documentation tests for a given crate defined
1972     /// by a `Cargo.toml` (single manifest)
1973     ///
1974     /// This is what runs tests for crates like the standard library, compiler, etc.
1975     /// It essentially is the driver for running `cargo test`.
1976     ///
1977     /// Currently this runs all tests for a DAG by passing a bunch of `-p foo`
1978     /// arguments, and those arguments are discovered from `cargo metadata`.
1979     fn run(self, builder: &Builder<'_>) {
1980         let compiler = self.compiler;
1981         let target = self.target;
1982         let mode = self.mode;
1983         let test_kind = self.test_kind;
1984
1985         builder.ensure(compile::Std::new(compiler, target));
1986         builder.ensure(RemoteCopyLibs { compiler, target });
1987
1988         // If we're not doing a full bootstrap but we're testing a stage2
1989         // version of libstd, then what we're actually testing is the libstd
1990         // produced in stage1. Reflect that here by updating the compiler that
1991         // we're working with automatically.
1992         let compiler = builder.compiler_for(compiler.stage, compiler.host, target);
1993
1994         let mut cargo =
1995             builder.cargo(compiler, mode, SourceType::InTree, target, test_kind.subcommand());
1996         match mode {
1997             Mode::Std => {
1998                 compile::std_cargo(builder, target, compiler.stage, &mut cargo);
1999             }
2000             Mode::Rustc => {
2001                 compile::rustc_cargo(builder, &mut cargo, target);
2002             }
2003             _ => panic!("can only test libraries"),
2004         };
2005
2006         // Build up the base `cargo test` command.
2007         //
2008         // Pass in some standard flags then iterate over the graph we've discovered
2009         // in `cargo metadata` with the maps above and figure out what `-p`
2010         // arguments need to get passed.
2011         if test_kind.subcommand() == "test" && !builder.fail_fast {
2012             cargo.arg("--no-fail-fast");
2013         }
2014         match builder.doc_tests {
2015             DocTests::Only => {
2016                 cargo.arg("--doc");
2017             }
2018             DocTests::No => {
2019                 cargo.args(&["--lib", "--bins", "--examples", "--tests", "--benches"]);
2020             }
2021             DocTests::Yes => {}
2022         }
2023
2024         for krate in &self.crates {
2025             cargo.arg("-p").arg(krate);
2026         }
2027
2028         // The tests are going to run with the *target* libraries, so we need to
2029         // ensure that those libraries show up in the LD_LIBRARY_PATH equivalent.
2030         //
2031         // Note that to run the compiler we need to run with the *host* libraries,
2032         // but our wrapper scripts arrange for that to be the case anyway.
2033         let mut dylib_path = dylib_path();
2034         dylib_path.insert(0, PathBuf::from(&*builder.sysroot_libdir(compiler, target)));
2035         cargo.env(dylib_path_var(), env::join_paths(&dylib_path).unwrap());
2036
2037         cargo.arg("--");
2038         cargo.args(&builder.config.cmd.test_args());
2039
2040         if !builder.config.verbose_tests {
2041             cargo.arg("--quiet");
2042         }
2043
2044         if target.contains("emscripten") {
2045             cargo.env(
2046                 format!("CARGO_TARGET_{}_RUNNER", envify(&target.triple)),
2047                 builder.config.nodejs.as_ref().expect("nodejs not configured"),
2048             );
2049         } else if target.starts_with("wasm32") {
2050             let node = builder.config.nodejs.as_ref().expect("nodejs not configured");
2051             let runner =
2052                 format!("{} {}/src/etc/wasm32-shim.js", node.display(), builder.src.display());
2053             cargo.env(format!("CARGO_TARGET_{}_RUNNER", envify(&target.triple)), &runner);
2054         } else if builder.remote_tested(target) {
2055             cargo.env(
2056                 format!("CARGO_TARGET_{}_RUNNER", envify(&target.triple)),
2057                 format!("{} run 0", builder.tool_exe(Tool::RemoteTestClient).display()),
2058             );
2059         }
2060
2061         builder.info(&format!(
2062             "{} {:?} stage{} ({} -> {})",
2063             test_kind, self.crates, compiler.stage, &compiler.host, target
2064         ));
2065         let _time = util::timeit(&builder);
2066         try_run(builder, &mut cargo.into());
2067     }
2068 }
2069
2070 /// Rustdoc is special in various ways, which is why this step is different from `Crate`.
2071 #[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
2072 pub struct CrateRustdoc {
2073     host: TargetSelection,
2074     test_kind: TestKind,
2075 }
2076
2077 impl Step for CrateRustdoc {
2078     type Output = ();
2079     const DEFAULT: bool = true;
2080     const ONLY_HOSTS: bool = true;
2081
2082     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
2083         run.paths(&["src/librustdoc", "src/tools/rustdoc"])
2084     }
2085
2086     fn make_run(run: RunConfig<'_>) {
2087         let builder = run.builder;
2088
2089         let test_kind = builder.kind.into();
2090
2091         builder.ensure(CrateRustdoc { host: run.target, test_kind });
2092     }
2093
2094     fn run(self, builder: &Builder<'_>) {
2095         let test_kind = self.test_kind;
2096         let target = self.host;
2097
2098         let compiler = if builder.download_rustc() {
2099             builder.compiler(builder.top_stage, target)
2100         } else {
2101             // Use the previous stage compiler to reuse the artifacts that are
2102             // created when running compiletest for src/test/rustdoc. If this used
2103             // `compiler`, then it would cause rustdoc to be built *again*, which
2104             // isn't really necessary.
2105             builder.compiler_for(builder.top_stage, target, target)
2106         };
2107         builder.ensure(compile::Rustc::new(compiler, target));
2108
2109         let mut cargo = tool::prepare_tool_cargo(
2110             builder,
2111             compiler,
2112             Mode::ToolRustc,
2113             target,
2114             test_kind.subcommand(),
2115             "src/tools/rustdoc",
2116             SourceType::InTree,
2117             &[],
2118         );
2119         if test_kind.subcommand() == "test" && !builder.fail_fast {
2120             cargo.arg("--no-fail-fast");
2121         }
2122         match builder.doc_tests {
2123             DocTests::Only => {
2124                 cargo.arg("--doc");
2125             }
2126             DocTests::No => {
2127                 cargo.args(&["--lib", "--bins", "--examples", "--tests", "--benches"]);
2128             }
2129             DocTests::Yes => {}
2130         }
2131
2132         cargo.arg("-p").arg("rustdoc:0.0.0");
2133
2134         cargo.arg("--");
2135         cargo.args(&builder.config.cmd.test_args());
2136
2137         if self.host.contains("musl") {
2138             cargo.arg("'-Ctarget-feature=-crt-static'");
2139         }
2140
2141         // This is needed for running doctests on librustdoc. This is a bit of
2142         // an unfortunate interaction with how bootstrap works and how cargo
2143         // sets up the dylib path, and the fact that the doctest (in
2144         // html/markdown.rs) links to rustc-private libs. For stage1, the
2145         // compiler host dylibs (in stage1/lib) are not the same as the target
2146         // dylibs (in stage1/lib/rustlib/...). This is different from a normal
2147         // rust distribution where they are the same.
2148         //
2149         // On the cargo side, normal tests use `target_process` which handles
2150         // setting up the dylib for a *target* (stage1/lib/rustlib/... in this
2151         // case). However, for doctests it uses `rustdoc_process` which only
2152         // sets up the dylib path for the *host* (stage1/lib), which is the
2153         // wrong directory.
2154         //
2155         // Recall that we special-cased `compiler_for(top_stage)` above, so we always use stage1.
2156         //
2157         // It should be considered to just stop running doctests on
2158         // librustdoc. There is only one test, and it doesn't look too
2159         // important. There might be other ways to avoid this, but it seems
2160         // pretty convoluted.
2161         //
2162         // See also https://github.com/rust-lang/rust/issues/13983 where the
2163         // host vs target dylibs for rustdoc are consistently tricky to deal
2164         // with.
2165         //
2166         // Note that this set the host libdir for `download_rustc`, which uses a normal rust distribution.
2167         let libdir = if builder.download_rustc() {
2168             builder.rustc_libdir(compiler)
2169         } else {
2170             builder.sysroot_libdir(compiler, target).to_path_buf()
2171         };
2172         let mut dylib_path = dylib_path();
2173         dylib_path.insert(0, PathBuf::from(&*libdir));
2174         cargo.env(dylib_path_var(), env::join_paths(&dylib_path).unwrap());
2175
2176         if !builder.config.verbose_tests {
2177             cargo.arg("--quiet");
2178         }
2179
2180         builder.info(&format!(
2181             "{} rustdoc stage{} ({} -> {})",
2182             test_kind, compiler.stage, &compiler.host, target
2183         ));
2184         let _time = util::timeit(&builder);
2185
2186         try_run(builder, &mut cargo.into());
2187     }
2188 }
2189
2190 #[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
2191 pub struct CrateRustdocJsonTypes {
2192     host: TargetSelection,
2193     test_kind: TestKind,
2194 }
2195
2196 impl Step for CrateRustdocJsonTypes {
2197     type Output = ();
2198     const DEFAULT: bool = true;
2199     const ONLY_HOSTS: bool = true;
2200
2201     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
2202         run.path("src/rustdoc-json-types")
2203     }
2204
2205     fn make_run(run: RunConfig<'_>) {
2206         let builder = run.builder;
2207
2208         let test_kind = builder.kind.into();
2209
2210         builder.ensure(CrateRustdocJsonTypes { host: run.target, test_kind });
2211     }
2212
2213     fn run(self, builder: &Builder<'_>) {
2214         let test_kind = self.test_kind;
2215         let target = self.host;
2216
2217         // Use the previous stage compiler to reuse the artifacts that are
2218         // created when running compiletest for src/test/rustdoc. If this used
2219         // `compiler`, then it would cause rustdoc to be built *again*, which
2220         // isn't really necessary.
2221         let compiler = builder.compiler_for(builder.top_stage, target, target);
2222         builder.ensure(compile::Rustc::new(compiler, target));
2223
2224         let mut cargo = tool::prepare_tool_cargo(
2225             builder,
2226             compiler,
2227             Mode::ToolRustc,
2228             target,
2229             test_kind.subcommand(),
2230             "src/rustdoc-json-types",
2231             SourceType::InTree,
2232             &[],
2233         );
2234         if test_kind.subcommand() == "test" && !builder.fail_fast {
2235             cargo.arg("--no-fail-fast");
2236         }
2237
2238         cargo.arg("-p").arg("rustdoc-json-types");
2239
2240         cargo.arg("--");
2241         cargo.args(&builder.config.cmd.test_args());
2242
2243         if self.host.contains("musl") {
2244             cargo.arg("'-Ctarget-feature=-crt-static'");
2245         }
2246
2247         if !builder.config.verbose_tests {
2248             cargo.arg("--quiet");
2249         }
2250
2251         builder.info(&format!(
2252             "{} rustdoc-json-types stage{} ({} -> {})",
2253             test_kind, compiler.stage, &compiler.host, target
2254         ));
2255         let _time = util::timeit(&builder);
2256
2257         try_run(builder, &mut cargo.into());
2258     }
2259 }
2260
2261 /// Some test suites are run inside emulators or on remote devices, and most
2262 /// of our test binaries are linked dynamically which means we need to ship
2263 /// the standard library and such to the emulator ahead of time. This step
2264 /// represents this and is a dependency of all test suites.
2265 ///
2266 /// Most of the time this is a no-op. For some steps such as shipping data to
2267 /// QEMU we have to build our own tools so we've got conditional dependencies
2268 /// on those programs as well. Note that the remote test client is built for
2269 /// the build target (us) and the server is built for the target.
2270 #[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
2271 pub struct RemoteCopyLibs {
2272     compiler: Compiler,
2273     target: TargetSelection,
2274 }
2275
2276 impl Step for RemoteCopyLibs {
2277     type Output = ();
2278
2279     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
2280         run.never()
2281     }
2282
2283     fn run(self, builder: &Builder<'_>) {
2284         let compiler = self.compiler;
2285         let target = self.target;
2286         if !builder.remote_tested(target) {
2287             return;
2288         }
2289
2290         builder.ensure(compile::Std::new(compiler, target));
2291
2292         builder.info(&format!("REMOTE copy libs to emulator ({})", target));
2293
2294         let server = builder.ensure(tool::RemoteTestServer { compiler, target });
2295
2296         // Spawn the emulator and wait for it to come online
2297         let tool = builder.tool_exe(Tool::RemoteTestClient);
2298         let mut cmd = Command::new(&tool);
2299         cmd.arg("spawn-emulator").arg(target.triple).arg(&server).arg(builder.tempdir());
2300         if let Some(rootfs) = builder.qemu_rootfs(target) {
2301             cmd.arg(rootfs);
2302         }
2303         builder.run(&mut cmd);
2304
2305         // Push all our dylibs to the emulator
2306         for f in t!(builder.sysroot_libdir(compiler, target).read_dir()) {
2307             let f = t!(f);
2308             let name = f.file_name().into_string().unwrap();
2309             if util::is_dylib(&name) {
2310                 builder.run(Command::new(&tool).arg("push").arg(f.path()));
2311             }
2312         }
2313     }
2314 }
2315
2316 #[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
2317 pub struct Distcheck;
2318
2319 impl Step for Distcheck {
2320     type Output = ();
2321
2322     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
2323         run.alias("distcheck")
2324     }
2325
2326     fn make_run(run: RunConfig<'_>) {
2327         run.builder.ensure(Distcheck);
2328     }
2329
2330     /// Runs "distcheck", a 'make check' from a tarball
2331     fn run(self, builder: &Builder<'_>) {
2332         builder.info("Distcheck");
2333         let dir = builder.tempdir().join("distcheck");
2334         let _ = fs::remove_dir_all(&dir);
2335         t!(fs::create_dir_all(&dir));
2336
2337         // Guarantee that these are built before we begin running.
2338         builder.ensure(dist::PlainSourceTarball);
2339         builder.ensure(dist::Src);
2340
2341         let mut cmd = Command::new("tar");
2342         cmd.arg("-xf")
2343             .arg(builder.ensure(dist::PlainSourceTarball).tarball())
2344             .arg("--strip-components=1")
2345             .current_dir(&dir);
2346         builder.run(&mut cmd);
2347         builder.run(
2348             Command::new("./configure")
2349                 .args(&builder.config.configure_args)
2350                 .arg("--enable-vendor")
2351                 .current_dir(&dir),
2352         );
2353         builder.run(
2354             Command::new(util::make(&builder.config.build.triple)).arg("check").current_dir(&dir),
2355         );
2356
2357         // Now make sure that rust-src has all of libstd's dependencies
2358         builder.info("Distcheck rust-src");
2359         let dir = builder.tempdir().join("distcheck-src");
2360         let _ = fs::remove_dir_all(&dir);
2361         t!(fs::create_dir_all(&dir));
2362
2363         let mut cmd = Command::new("tar");
2364         cmd.arg("-xf")
2365             .arg(builder.ensure(dist::Src).tarball())
2366             .arg("--strip-components=1")
2367             .current_dir(&dir);
2368         builder.run(&mut cmd);
2369
2370         let toml = dir.join("rust-src/lib/rustlib/src/rust/library/std/Cargo.toml");
2371         builder.run(
2372             Command::new(&builder.initial_cargo)
2373                 .arg("generate-lockfile")
2374                 .arg("--manifest-path")
2375                 .arg(&toml)
2376                 .current_dir(&dir),
2377         );
2378     }
2379 }
2380
2381 #[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
2382 pub struct Bootstrap;
2383
2384 impl Step for Bootstrap {
2385     type Output = ();
2386     const DEFAULT: bool = true;
2387     const ONLY_HOSTS: bool = true;
2388
2389     /// Tests the build system itself.
2390     fn run(self, builder: &Builder<'_>) {
2391         let mut check_bootstrap = Command::new(&builder.python());
2392         check_bootstrap.arg("bootstrap_test.py").current_dir(builder.src.join("src/bootstrap/"));
2393         try_run(builder, &mut check_bootstrap);
2394
2395         let mut cmd = Command::new(&builder.initial_cargo);
2396         cmd.arg("test")
2397             .current_dir(builder.src.join("src/bootstrap"))
2398             .env("RUSTFLAGS", "-Cdebuginfo=2")
2399             .env("CARGO_TARGET_DIR", builder.out.join("bootstrap"))
2400             .env("RUSTC_BOOTSTRAP", "1")
2401             .env("RUSTDOC", builder.rustdoc(builder.compiler(0, builder.build.build)))
2402             .env("RUSTC", &builder.initial_rustc);
2403         if let Some(flags) = option_env!("RUSTFLAGS") {
2404             // Use the same rustc flags for testing as for "normal" compilation,
2405             // so that Cargo doesn’t recompile the entire dependency graph every time:
2406             // https://github.com/rust-lang/rust/issues/49215
2407             cmd.env("RUSTFLAGS", flags);
2408         }
2409         if !builder.fail_fast {
2410             cmd.arg("--no-fail-fast");
2411         }
2412         match builder.doc_tests {
2413             DocTests::Only => {
2414                 cmd.arg("--doc");
2415             }
2416             DocTests::No => {
2417                 cmd.args(&["--lib", "--bins", "--examples", "--tests", "--benches"]);
2418             }
2419             DocTests::Yes => {}
2420         }
2421
2422         cmd.arg("--").args(&builder.config.cmd.test_args());
2423         // rustbuild tests are racy on directory creation so just run them one at a time.
2424         // Since there's not many this shouldn't be a problem.
2425         cmd.arg("--test-threads=1");
2426         try_run(builder, &mut cmd);
2427     }
2428
2429     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
2430         run.path("src/bootstrap")
2431     }
2432
2433     fn make_run(run: RunConfig<'_>) {
2434         run.builder.ensure(Bootstrap);
2435     }
2436 }
2437
2438 #[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
2439 pub struct TierCheck {
2440     pub compiler: Compiler,
2441 }
2442
2443 impl Step for TierCheck {
2444     type Output = ();
2445     const DEFAULT: bool = true;
2446     const ONLY_HOSTS: bool = true;
2447
2448     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
2449         run.path("src/tools/tier-check")
2450     }
2451
2452     fn make_run(run: RunConfig<'_>) {
2453         let compiler =
2454             run.builder.compiler_for(run.builder.top_stage, run.builder.build.build, run.target);
2455         run.builder.ensure(TierCheck { compiler });
2456     }
2457
2458     /// Tests the Platform Support page in the rustc book.
2459     fn run(self, builder: &Builder<'_>) {
2460         builder.ensure(compile::Std::new(self.compiler, self.compiler.host));
2461         let mut cargo = tool::prepare_tool_cargo(
2462             builder,
2463             self.compiler,
2464             Mode::ToolStd,
2465             self.compiler.host,
2466             "run",
2467             "src/tools/tier-check",
2468             SourceType::InTree,
2469             &[],
2470         );
2471         cargo.arg(builder.src.join("src/doc/rustc/src/platform-support.md"));
2472         cargo.arg(&builder.rustc(self.compiler));
2473         if builder.is_verbose() {
2474             cargo.arg("--verbose");
2475         }
2476
2477         builder.info("platform support check");
2478         try_run(builder, &mut cargo.into());
2479     }
2480 }
2481
2482 #[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
2483 pub struct ReplacePlaceholderTest;
2484
2485 impl Step for ReplacePlaceholderTest {
2486     type Output = ();
2487     const ONLY_HOSTS: bool = true;
2488     const DEFAULT: bool = true;
2489
2490     /// Ensure the version placeholder replacement tool builds
2491     fn run(self, builder: &Builder<'_>) {
2492         builder.info("build check for version replacement placeholder");
2493
2494         // Test the version placeholder replacement tool itself.
2495         let bootstrap_host = builder.config.build;
2496         let compiler = builder.compiler(0, bootstrap_host);
2497         let cargo = tool::prepare_tool_cargo(
2498             builder,
2499             compiler,
2500             Mode::ToolBootstrap,
2501             bootstrap_host,
2502             "test",
2503             "src/tools/replace-version-placeholder",
2504             SourceType::InTree,
2505             &[],
2506         );
2507         try_run(builder, &mut cargo.into());
2508     }
2509
2510     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
2511         run.path("src/tools/replace-version-placeholder")
2512     }
2513
2514     fn make_run(run: RunConfig<'_>) {
2515         run.builder.ensure(Self);
2516     }
2517 }
2518
2519 #[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
2520 pub struct LintDocs {
2521     pub compiler: Compiler,
2522     pub target: TargetSelection,
2523 }
2524
2525 impl Step for LintDocs {
2526     type Output = ();
2527     const DEFAULT: bool = true;
2528     const ONLY_HOSTS: bool = true;
2529
2530     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
2531         run.path("src/tools/lint-docs")
2532     }
2533
2534     fn make_run(run: RunConfig<'_>) {
2535         run.builder.ensure(LintDocs {
2536             compiler: run.builder.compiler(run.builder.top_stage, run.builder.config.build),
2537             target: run.target,
2538         });
2539     }
2540
2541     /// Tests that the lint examples in the rustc book generate the correct
2542     /// lints and have the expected format.
2543     fn run(self, builder: &Builder<'_>) {
2544         builder.ensure(crate::doc::RustcBook {
2545             compiler: self.compiler,
2546             target: self.target,
2547             validate: true,
2548         });
2549     }
2550 }