blob: 19aac0f36bb27e59c2a035d7ccca2d9453c48dc9 [file] [log] [blame]
Alex Crichtondefd1b32016-03-08 07:15:551// Copyright 2016 The Rust Project Developers. See the COPYRIGHT
2// file at the top-level directory of this distribution and at
3// http://rust-lang.org/COPYRIGHT.
4//
5// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8// option. This file may not be copied, modified, or distributed
9// except according to those terms.
10
Alex Crichton0e272de2016-11-16 20:31:1911//! Implementation of the test-related targets of the build system.
Alex Crichtonf72bfe62016-05-02 22:16:1512//!
13//! This file implements the various regression test suites that we execute on
14//! our CI.
15
Sébastien Mariea7d90252016-12-17 19:09:2316extern crate build_helper;
17
Alex Crichtona270b802016-10-21 20:18:0918use std::collections::HashSet;
Alex Crichtonbb9062a2016-04-29 21:23:1519use std::env;
Ulrik Sverdrupb1566ba2016-11-25 21:13:5920use std::fmt;
Alex Crichton147e2da2016-10-07 06:30:3821use std::fs;
Alex Crichtonede89442016-04-15 01:00:3522use std::path::{PathBuf, Path};
23use std::process::Command;
Alex Crichton73c2d2a2016-04-14 21:27:5124
Alex Crichton126e09e2016-04-14 22:51:0325use build_helper::output;
26
Alex Crichton48a07bf2016-07-06 04:58:2027use {Build, Compiler, Mode};
Alex Crichtond38db822016-12-09 01:13:5528use dist;
Alex Crichton48a07bf2016-07-06 04:58:2029use util::{self, dylib_path, dylib_path_var};
Alex Crichton39a5d3f2016-06-28 20:31:3030
31const ADB_TEST_DIR: &'static str = "/data/tmp";
Alex Crichtondefd1b32016-03-08 07:15:5532
Ulrik Sverdrupb1566ba2016-11-25 21:13:5933/// The two modes of the test runner; tests or benchmarks.
34#[derive(Copy, Clone)]
35pub enum TestKind {
36 /// Run `cargo test`
37 Test,
38 /// Run `cargo bench`
39 Bench,
40}
41
42impl TestKind {
43 // Return the cargo subcommand for this test kind
44 fn subcommand(self) -> &'static str {
45 match self {
46 TestKind::Test => "test",
47 TestKind::Bench => "bench",
48 }
49 }
50}
51
52impl fmt::Display for TestKind {
53 fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
54 f.write_str(match *self {
55 TestKind::Test => "Testing",
56 TestKind::Bench => "Benchmarking",
57 })
58 }
59}
60
Alex Crichtonf72bfe62016-05-02 22:16:1561/// Runs the `linkchecker` tool as compiled in `stage` by the `host` compiler.
62///
63/// This tool in `src/tools` will verify the validity of all our links in the
64/// documentation to ensure we don't have a bunch of dead ones.
Alex Crichton254876e2016-12-28 23:01:2165pub fn linkcheck(build: &Build, host: &str) {
66 println!("Linkcheck ({})", host);
67 let compiler = Compiler::new(0, host);
Alex Crichton0e272de2016-11-16 20:31:1968
69 let _time = util::timeit();
Alex Crichton4a917e02016-03-12 00:21:0570 build.run(build.tool_cmd(&compiler, "linkchecker")
71 .arg(build.out.join(host).join("doc")));
Alex Crichtondefd1b32016-03-08 07:15:5572}
Brian Anderson3a790ac2016-03-18 20:54:3173
Alex Crichtonf72bfe62016-05-02 22:16:1574/// Runs the `cargotest` tool as compiled in `stage` by the `host` compiler.
75///
76/// This tool in `src/tools` will check out a few Rust projects and run `cargo
77/// test` to ensure that we don't regress the test suites there.
Brian Anderson3a790ac2016-03-18 20:54:3178pub fn cargotest(build: &Build, stage: u32, host: &str) {
79 let ref compiler = Compiler::new(stage, host);
Brian Anderson80199222016-04-06 18:03:4280
81 // Configure PATH to find the right rustc. NB. we have to use PATH
82 // and not RUSTC because the Cargo test suite has tests that will
83 // fail if rustc is not spelled `rustc`.
84 let path = build.sysroot(compiler).join("bin");
85 let old_path = ::std::env::var("PATH").expect("");
86 let sep = if cfg!(windows) { ";" } else {":" };
87 let ref newpath = format!("{}{}{}", path.display(), sep, old_path);
88
Alex Crichton73c2d2a2016-04-14 21:27:5189 // Note that this is a short, cryptic, and not scoped directory name. This
90 // is currently to minimize the length of path on Windows where we otherwise
91 // quickly run into path name limit constraints.
92 let out_dir = build.out.join("ct");
93 t!(fs::create_dir_all(&out_dir));
94
Alex Crichton0e272de2016-11-16 20:31:1995 let _time = util::timeit();
Alex Crichton254876e2016-12-28 23:01:2196 let mut cmd = Command::new(build.tool(&Compiler::new(0, host), "cargotest"));
97 build.prepare_tool_cmd(compiler, &mut cmd);
98 build.run(cmd.env("PATH", newpath)
99 .arg(&build.cargo)
100 .arg(&out_dir));
Brian Anderson3a790ac2016-03-18 20:54:31101}
Alex Crichton9dd3c542016-03-29 20:14:52102
Alex Crichtonf72bfe62016-05-02 22:16:15103/// Runs the `tidy` tool as compiled in `stage` by the `host` compiler.
104///
105/// This tool in `src/tools` checks up on various bits and pieces of style and
106/// otherwise just implements a few lint-like checks that are specific to the
107/// compiler itself.
Alex Crichton254876e2016-12-28 23:01:21108pub fn tidy(build: &Build, host: &str) {
109 println!("tidy check ({})", host);
110 let compiler = Compiler::new(0, host);
Alex Crichton9dd3c542016-03-29 20:14:52111 build.run(build.tool_cmd(&compiler, "tidy")
112 .arg(build.src.join("src")));
113}
Alex Crichtonb325baf2016-04-05 18:34:23114
115fn testdir(build: &Build, host: &str) -> PathBuf {
116 build.out.join(host).join("test")
117}
118
Alex Crichtonf72bfe62016-05-02 22:16:15119/// Executes the `compiletest` tool to run a suite of tests.
120///
121/// Compiles all tests with `compiler` for `target` with the specified
122/// compiletest `mode` and `suite` arguments. For example `mode` can be
123/// "run-pass" or `suite` can be something like `debuginfo`.
Alex Crichtonb325baf2016-04-05 18:34:23124pub fn compiletest(build: &Build,
125 compiler: &Compiler,
126 target: &str,
127 mode: &str,
128 suite: &str) {
Alex Crichton0e272de2016-11-16 20:31:19129 println!("Check compiletest suite={} mode={} ({} -> {})",
130 suite, mode, compiler.host, target);
Alex Crichton254876e2016-12-28 23:01:21131 let mut cmd = Command::new(build.tool(&Compiler::new(0, compiler.host),
132 "compiletest"));
133 build.prepare_tool_cmd(compiler, &mut cmd);
Alex Crichtonb325baf2016-04-05 18:34:23134
Alex Crichtonf72bfe62016-05-02 22:16:15135 // compiletest currently has... a lot of arguments, so let's just pass all
136 // of them!
137
Alex Crichtonb325baf2016-04-05 18:34:23138 cmd.arg("--compile-lib-path").arg(build.rustc_libdir(compiler));
139 cmd.arg("--run-lib-path").arg(build.sysroot_libdir(compiler, target));
140 cmd.arg("--rustc-path").arg(build.compiler_path(compiler));
141 cmd.arg("--rustdoc-path").arg(build.rustdoc(compiler));
142 cmd.arg("--src-base").arg(build.src.join("src/test").join(suite));
Alex Crichtonb325baf2016-04-05 18:34:23143 cmd.arg("--build-base").arg(testdir(build, compiler.host).join(suite));
144 cmd.arg("--stage-id").arg(format!("stage{}-{}", compiler.stage, target));
145 cmd.arg("--mode").arg(mode);
146 cmd.arg("--target").arg(target);
147 cmd.arg("--host").arg(compiler.host);
148 cmd.arg("--llvm-filecheck").arg(build.llvm_filecheck(&build.config.build));
149
Brian Anderson8401e372016-09-15 19:42:26150 if let Some(nodejs) = build.config.nodejs.as_ref() {
151 cmd.arg("--nodejs").arg(nodejs);
152 }
153
Alex Crichton39a5d3f2016-06-28 20:31:30154 let mut flags = vec!["-Crpath".to_string()];
Alex Crichtonf4e4ec72016-05-13 22:26:41155 if build.config.rust_optimize_tests {
Alex Crichton39a5d3f2016-06-28 20:31:30156 flags.push("-O".to_string());
Alex Crichtonf4e4ec72016-05-13 22:26:41157 }
158 if build.config.rust_debuginfo_tests {
Alex Crichton39a5d3f2016-06-28 20:31:30159 flags.push("-g".to_string());
Alex Crichtonf4e4ec72016-05-13 22:26:41160 }
161
Alex Crichton39a5d3f2016-06-28 20:31:30162 let mut hostflags = build.rustc_flags(&compiler.host);
163 hostflags.extend(flags.clone());
164 cmd.arg("--host-rustcflags").arg(hostflags.join(" "));
Alex Crichtonf4e4ec72016-05-13 22:26:41165
Alex Crichton39a5d3f2016-06-28 20:31:30166 let mut targetflags = build.rustc_flags(&target);
167 targetflags.extend(flags);
168 targetflags.push(format!("-Lnative={}",
169 build.test_helpers_out(target).display()));
170 cmd.arg("--target-rustcflags").arg(targetflags.join(" "));
Alex Crichtoncbe62922016-04-19 16:44:19171
Alex Crichton5f6261382016-11-14 16:04:39172 cmd.arg("--docck-python").arg(build.python());
Alex Crichtoncbe62922016-04-19 16:44:19173
174 if build.config.build.ends_with("apple-darwin") {
175 // Force /usr/bin/python on OSX for LLDB tests because we're loading the
176 // LLDB plugin's compiled module which only works with the system python
177 // (namely not Homebrew-installed python)
178 cmd.arg("--lldb-python").arg("/usr/bin/python");
179 } else {
Alex Crichton5f6261382016-11-14 16:04:39180 cmd.arg("--lldb-python").arg(build.python());
Alex Crichtoncbe62922016-04-19 16:44:19181 }
Alex Crichtonb325baf2016-04-05 18:34:23182
Tim Neumanndce46002016-10-29 18:11:53183 if let Some(ref gdb) = build.config.gdb {
184 cmd.arg("--gdb").arg(gdb);
Alex Crichtonb325baf2016-04-05 18:34:23185 }
186 if let Some(ref vers) = build.lldb_version {
187 cmd.arg("--lldb-version").arg(vers);
188 }
189 if let Some(ref dir) = build.lldb_python_dir {
190 cmd.arg("--lldb-python-dir").arg(dir);
191 }
Alex Crichton96283fc2016-09-01 17:52:44192 let llvm_config = build.llvm_config(target);
193 let llvm_version = output(Command::new(&llvm_config).arg("--version"));
194 cmd.arg("--llvm-version").arg(llvm_version);
Alex Crichtonb325baf2016-04-05 18:34:23195
Alex Crichtona270b802016-10-21 20:18:09196 cmd.args(&build.flags.cmd.test_args());
Alex Crichtonb325baf2016-04-05 18:34:23197
Niko Matsakis83453bc2016-11-16 23:02:56198 if build.config.verbose() || build.flags.verbose() {
Alex Crichtonb325baf2016-04-05 18:34:23199 cmd.arg("--verbose");
200 }
201
Corey Farwellc8c6d2c2016-10-30 01:58:52202 if build.config.quiet_tests {
203 cmd.arg("--quiet");
204 }
205
Alex Crichtonf72bfe62016-05-02 22:16:15206 // Only pass correct values for these flags for the `run-make` suite as it
207 // requires that a C++ compiler was configured which isn't always the case.
Alex Crichton126e09e2016-04-14 22:51:03208 if suite == "run-make" {
Alex Crichton126e09e2016-04-14 22:51:03209 let llvm_components = output(Command::new(&llvm_config).arg("--components"));
210 let llvm_cxxflags = output(Command::new(&llvm_config).arg("--cxxflags"));
211 cmd.arg("--cc").arg(build.cc(target))
212 .arg("--cxx").arg(build.cxx(target))
213 .arg("--cflags").arg(build.cflags(target).join(" "))
214 .arg("--llvm-components").arg(llvm_components.trim())
215 .arg("--llvm-cxxflags").arg(llvm_cxxflags.trim());
216 } else {
217 cmd.arg("--cc").arg("")
218 .arg("--cxx").arg("")
219 .arg("--cflags").arg("")
220 .arg("--llvm-components").arg("")
221 .arg("--llvm-cxxflags").arg("");
222 }
223
224 // Running a C compiler on MSVC requires a few env vars to be set, to be
225 // sure to set them here.
Alex Crichton0e272de2016-11-16 20:31:19226 //
227 // Note that if we encounter `PATH` we make sure to append to our own `PATH`
228 // rather than stomp over it.
Alex Crichton126e09e2016-04-14 22:51:03229 if target.contains("msvc") {
230 for &(ref k, ref v) in build.cc[target].0.env() {
231 if k != "PATH" {
232 cmd.env(k, v);
233 }
234 }
235 }
Alex Crichton21866602016-11-16 17:19:02236 cmd.env("RUSTC_BOOTSTRAP", "1");
Alex Crichton0e272de2016-11-16 20:31:19237 build.add_rust_test_threads(&mut cmd);
Alex Crichton126e09e2016-04-14 22:51:03238
Alex Crichton39a5d3f2016-06-28 20:31:30239 cmd.arg("--adb-path").arg("adb");
240 cmd.arg("--adb-test-dir").arg(ADB_TEST_DIR);
241 if target.contains("android") {
242 // Assume that cc for this target comes from the android sysroot
243 cmd.arg("--android-cross-path")
244 .arg(build.cc(target).parent().unwrap().parent().unwrap());
245 } else {
246 cmd.arg("--android-cross-path").arg("");
247 }
248
Alex Crichton0e272de2016-11-16 20:31:19249 let _time = util::timeit();
Alex Crichtonb325baf2016-04-05 18:34:23250 build.run(&mut cmd);
251}
Alex Crichtonede89442016-04-15 01:00:35252
Alex Crichtonf72bfe62016-05-02 22:16:15253/// Run `rustdoc --test` for all documentation in `src/doc`.
254///
255/// This will run all tests in our markdown documentation (e.g. the book)
256/// located in `src/doc`. The `rustdoc` that's run is the one that sits next to
257/// `compiler`.
Alex Crichtonede89442016-04-15 01:00:35258pub fn docs(build: &Build, compiler: &Compiler) {
Alex Crichtonf72bfe62016-05-02 22:16:15259 // Do a breadth-first traversal of the `src/doc` directory and just run
260 // tests for all files that end in `*.md`
Alex Crichtonede89442016-04-15 01:00:35261 let mut stack = vec![build.src.join("src/doc")];
Alex Crichton0e272de2016-11-16 20:31:19262 let _time = util::timeit();
Alex Crichtonede89442016-04-15 01:00:35263
264 while let Some(p) = stack.pop() {
265 if p.is_dir() {
266 stack.extend(t!(p.read_dir()).map(|p| t!(p).path()));
267 continue
268 }
269
270 if p.extension().and_then(|s| s.to_str()) != Some("md") {
271 continue
272 }
273
274 println!("doc tests for: {}", p.display());
275 markdown_test(build, compiler, &p);
276 }
277}
278
Alex Crichtonf72bfe62016-05-02 22:16:15279/// Run the error index generator tool to execute the tests located in the error
280/// index.
281///
282/// The `error_index_generator` tool lives in `src/tools` and is used to
283/// generate a markdown file from the error indexes of the code base which is
284/// then passed to `rustdoc --test`.
Alex Crichtonede89442016-04-15 01:00:35285pub fn error_index(build: &Build, compiler: &Compiler) {
286 println!("Testing error-index stage{}", compiler.stage);
287
Alex Crichton860c6ab2016-11-08 17:59:46288 let dir = testdir(build, compiler.host);
289 t!(fs::create_dir_all(&dir));
290 let output = dir.join("error-index.md");
Alex Crichton0e272de2016-11-16 20:31:19291
292 let _time = util::timeit();
Alex Crichton254876e2016-12-28 23:01:21293 build.run(build.tool_cmd(&Compiler::new(0, compiler.host),
294 "error_index_generator")
Alex Crichtonede89442016-04-15 01:00:35295 .arg("markdown")
296 .arg(&output)
297 .env("CFG_BUILD", &build.config.build));
298
299 markdown_test(build, compiler, &output);
300}
301
302fn markdown_test(build: &Build, compiler: &Compiler, markdown: &Path) {
303 let mut cmd = Command::new(build.rustdoc(compiler));
304 build.add_rustc_lib_path(compiler, &mut cmd);
Alex Crichton0e272de2016-11-16 20:31:19305 build.add_rust_test_threads(&mut cmd);
Alex Crichtonede89442016-04-15 01:00:35306 cmd.arg("--test");
307 cmd.arg(markdown);
Alex Crichton6f62fae2016-12-12 17:03:35308 cmd.env("RUSTC_BOOTSTRAP", "1");
Corey Farwellc8c6d2c2016-10-30 01:58:52309
Alex Crichtona270b802016-10-21 20:18:09310 let mut test_args = build.flags.cmd.test_args().join(" ");
Corey Farwellc8c6d2c2016-10-30 01:58:52311 if build.config.quiet_tests {
312 test_args.push_str(" --quiet");
313 }
314 cmd.arg("--test-args").arg(test_args);
315
Alex Crichtonede89442016-04-15 01:00:35316 build.run(&mut cmd);
317}
Alex Crichtonbb9062a2016-04-29 21:23:15318
319/// Run all unit tests plus documentation tests for an entire crate DAG defined
320/// by a `Cargo.toml`
321///
322/// This is what runs tests for crates like the standard library, compiler, etc.
323/// It essentially is the driver for running `cargo test`.
324///
325/// Currently this runs all tests for a DAG by passing a bunch of `-p foo`
Alex Crichton147e2da2016-10-07 06:30:38326/// arguments, and those arguments are discovered from `cargo metadata`.
Alex Crichtonbb9062a2016-04-29 21:23:15327pub fn krate(build: &Build,
328 compiler: &Compiler,
329 target: &str,
Alex Crichtona270b802016-10-21 20:18:09330 mode: Mode,
Ulrik Sverdrupb1566ba2016-11-25 21:13:59331 test_kind: TestKind,
Alex Crichtona270b802016-10-21 20:18:09332 krate: Option<&str>) {
Alex Crichton147e2da2016-10-07 06:30:38333 let (name, path, features, root) = match mode {
Ahmed Charles9ca382f2016-09-02 08:55:29334 Mode::Libstd => {
Alex Crichton147e2da2016-10-07 06:30:38335 ("libstd", "src/rustc/std_shim", build.std_features(), "std_shim")
Ahmed Charles9ca382f2016-09-02 08:55:29336 }
337 Mode::Libtest => {
Alex Crichton147e2da2016-10-07 06:30:38338 ("libtest", "src/rustc/test_shim", String::new(), "test_shim")
Ahmed Charles9ca382f2016-09-02 08:55:29339 }
340 Mode::Librustc => {
Alex Crichton147e2da2016-10-07 06:30:38341 ("librustc", "src/rustc", build.rustc_features(), "rustc-main")
Ahmed Charles9ca382f2016-09-02 08:55:29342 }
Alex Crichtonbb9062a2016-04-29 21:23:15343 _ => panic!("can only test libraries"),
344 };
Ulrik Sverdrupb1566ba2016-11-25 21:13:59345 println!("{} {} stage{} ({} -> {})", test_kind, name, compiler.stage,
Alex Crichtonbb9062a2016-04-29 21:23:15346 compiler.host, target);
347
Alex Crichton7046fea2016-12-25 23:20:33348 // If we're not doing a full bootstrap but we're testing a stage2 version of
349 // libstd, then what we're actually testing is the libstd produced in
350 // stage1. Reflect that here by updating the compiler that we're working
351 // with automatically.
352 let compiler = if build.force_use_stage1(compiler, target) {
353 Compiler::new(1, compiler.host)
354 } else {
355 compiler.clone()
356 };
357
Alex Crichtonbb9062a2016-04-29 21:23:15358 // Build up the base `cargo test` command.
Alex Crichton147e2da2016-10-07 06:30:38359 //
360 // Pass in some standard flags then iterate over the graph we've discovered
361 // in `cargo metadata` with the maps above and figure out what `-p`
362 // arguments need to get passed.
Alex Crichton7046fea2016-12-25 23:20:33363 let mut cargo = build.cargo(&compiler, mode, target, test_kind.subcommand());
Alex Crichtonbb9062a2016-04-29 21:23:15364 cargo.arg("--manifest-path")
365 .arg(build.src.join(path).join("Cargo.toml"))
366 .arg("--features").arg(features);
367
Alex Crichtona270b802016-10-21 20:18:09368 match krate {
369 Some(krate) => {
370 cargo.arg("-p").arg(krate);
Alex Crichtonbb9062a2016-04-29 21:23:15371 }
Alex Crichtona270b802016-10-21 20:18:09372 None => {
373 let mut visited = HashSet::new();
374 let mut next = vec![root];
375 while let Some(name) = next.pop() {
Alex Crichton36a926a2017-01-13 23:11:34376 // Right now jemalloc is our only target-specific crate in the
377 // sense that it's not present on all platforms. Custom skip it
378 // here for now, but if we add more this probably wants to get
379 // more generalized.
380 //
381 // Also skip `build_helper` as it's not compiled normally for
382 // target during the bootstrap and it's just meant to be a
383 // helper crate, not tested. If it leaks through then it ends up
384 // messing with various mtime calculations and such.
385 if !name.contains("jemalloc") && name != "build_helper" {
Vadim Petrochenkovb4abb722017-02-02 20:55:42386 cargo.arg("-p").arg(&format!("{}:0.0.0", name));
Alex Crichtona270b802016-10-21 20:18:09387 }
388 for dep in build.crates[name].deps.iter() {
389 if visited.insert(dep) {
390 next.push(dep);
391 }
392 }
Alex Crichtonbb9062a2016-04-29 21:23:15393 }
394 }
Alex Crichtonbb9062a2016-04-29 21:23:15395 }
396
397 // The tests are going to run with the *target* libraries, so we need to
398 // ensure that those libraries show up in the LD_LIBRARY_PATH equivalent.
399 //
400 // Note that to run the compiler we need to run with the *host* libraries,
401 // but our wrapper scripts arrange for that to be the case anyway.
402 let mut dylib_path = dylib_path();
Alex Crichton7046fea2016-12-25 23:20:33403 dylib_path.insert(0, build.sysroot_libdir(&compiler, target));
Alex Crichtonbb9062a2016-04-29 21:23:15404 cargo.env(dylib_path_var(), env::join_paths(&dylib_path).unwrap());
Alex Crichtonbb9062a2016-04-29 21:23:15405
Alex Crichton0e272de2016-11-16 20:31:19406 if target.contains("android") {
407 cargo.arg("--no-run");
408 } else if target.contains("emscripten") {
409 cargo.arg("--no-run");
410 }
411
412 cargo.arg("--");
413
Corey Farwellc8c6d2c2016-10-30 01:58:52414 if build.config.quiet_tests {
Corey Farwellc8c6d2c2016-10-30 01:58:52415 cargo.arg("--quiet");
416 }
417
Alex Crichton0e272de2016-11-16 20:31:19418 let _time = util::timeit();
419
Alex Crichton39a5d3f2016-06-28 20:31:30420 if target.contains("android") {
Alex Crichton0e272de2016-11-16 20:31:19421 build.run(&mut cargo);
Alex Crichton7046fea2016-12-25 23:20:33422 krate_android(build, &compiler, target, mode);
Brian Andersonb8b50f02016-09-06 00:41:50423 } else if target.contains("emscripten") {
Alex Crichton0e272de2016-11-16 20:31:19424 build.run(&mut cargo);
Alex Crichton7046fea2016-12-25 23:20:33425 krate_emscripten(build, &compiler, target, mode);
Alex Crichton39a5d3f2016-06-28 20:31:30426 } else {
Alex Crichtona270b802016-10-21 20:18:09427 cargo.args(&build.flags.cmd.test_args());
Alex Crichton39a5d3f2016-06-28 20:31:30428 build.run(&mut cargo);
429 }
430}
431
432fn krate_android(build: &Build,
433 compiler: &Compiler,
434 target: &str,
435 mode: Mode) {
436 let mut tests = Vec::new();
437 let out_dir = build.cargo_out(compiler, mode, target);
438 find_tests(&out_dir, target, &mut tests);
439 find_tests(&out_dir.join("deps"), target, &mut tests);
440
441 for test in tests {
442 build.run(Command::new("adb").arg("push").arg(&test).arg(ADB_TEST_DIR));
443
444 let test_file_name = test.file_name().unwrap().to_string_lossy();
445 let log = format!("{}/check-stage{}-T-{}-H-{}-{}.log",
446 ADB_TEST_DIR,
447 compiler.stage,
448 target,
449 compiler.host,
450 test_file_name);
Alex Crichton0e272de2016-11-16 20:31:19451 let quiet = if build.config.quiet_tests { "--quiet" } else { "" };
Alex Crichton39a5d3f2016-06-28 20:31:30452 let program = format!("(cd {dir}; \
453 LD_LIBRARY_PATH=./{target} ./{test} \
454 --logfile {log} \
Alex Crichton0e272de2016-11-16 20:31:19455 {quiet} \
Alex Crichton39a5d3f2016-06-28 20:31:30456 {args})",
457 dir = ADB_TEST_DIR,
458 target = target,
459 test = test_file_name,
460 log = log,
Alex Crichton0e272de2016-11-16 20:31:19461 quiet = quiet,
Alex Crichtona270b802016-10-21 20:18:09462 args = build.flags.cmd.test_args().join(" "));
Alex Crichton39a5d3f2016-06-28 20:31:30463
464 let output = output(Command::new("adb").arg("shell").arg(&program));
465 println!("{}", output);
Alex Crichton31876722017-01-01 01:42:40466
467 t!(fs::create_dir_all(build.out.join("tmp")));
Alex Crichton39a5d3f2016-06-28 20:31:30468 build.run(Command::new("adb")
469 .arg("pull")
470 .arg(&log)
471 .arg(build.out.join("tmp")));
472 build.run(Command::new("adb").arg("shell").arg("rm").arg(&log));
473 if !output.contains("result: ok") {
474 panic!("some tests failed");
475 }
476 }
477}
478
Brian Andersonb8b50f02016-09-06 00:41:50479fn krate_emscripten(build: &Build,
480 compiler: &Compiler,
481 target: &str,
482 mode: Mode) {
Ross Schulmanad9184c2016-09-05 23:56:48483 let mut tests = Vec::new();
484 let out_dir = build.cargo_out(compiler, mode, target);
485 find_tests(&out_dir, target, &mut tests);
486 find_tests(&out_dir.join("deps"), target, &mut tests);
487
488 for test in tests {
489 let test_file_name = test.to_string_lossy().into_owned();
Brian Andersonfcd32792016-09-06 20:36:14490 println!("running {}", test_file_name);
Brian Anderson8401e372016-09-15 19:42:26491 let nodejs = build.config.nodejs.as_ref().expect("nodejs not configured");
Alex Crichton0e272de2016-11-16 20:31:19492 let mut cmd = Command::new(nodejs);
Alex Crichton03fb5ad2016-12-08 01:26:48493 cmd.arg(&test_file_name);
Alex Crichton0e272de2016-11-16 20:31:19494 if build.config.quiet_tests {
495 cmd.arg("--quiet");
496 }
497 build.run(&mut cmd);
Ross Schulmanad9184c2016-09-05 23:56:48498 }
499 }
500
501
Alex Crichton39a5d3f2016-06-28 20:31:30502fn find_tests(dir: &Path,
503 target: &str,
504 dst: &mut Vec<PathBuf>) {
505 for e in t!(dir.read_dir()).map(|e| t!(e)) {
506 let file_type = t!(e.file_type());
507 if !file_type.is_file() {
508 continue
509 }
510 let filename = e.file_name().into_string().unwrap();
511 if (target.contains("windows") && filename.ends_with(".exe")) ||
Ross Schulmanad9184c2016-09-05 23:56:48512 (!target.contains("windows") && !filename.contains(".")) ||
Brian Andersonfcd32792016-09-06 20:36:14513 (target.contains("emscripten") && filename.contains(".js")){
Alex Crichton39a5d3f2016-06-28 20:31:30514 dst.push(e.path());
515 }
516 }
517}
518
519pub fn android_copy_libs(build: &Build,
520 compiler: &Compiler,
521 target: &str) {
Alex Crichtoncf8fde12016-12-31 02:54:05522 if !target.contains("android") {
523 return
524 }
525
Alex Crichton39a5d3f2016-06-28 20:31:30526 println!("Android copy libs to emulator ({})", target);
Alex Crichton31876722017-01-01 01:42:40527 build.run(Command::new("adb").arg("wait-for-device"));
Alex Crichton39a5d3f2016-06-28 20:31:30528 build.run(Command::new("adb").arg("remount"));
529 build.run(Command::new("adb").args(&["shell", "rm", "-r", ADB_TEST_DIR]));
530 build.run(Command::new("adb").args(&["shell", "mkdir", ADB_TEST_DIR]));
531 build.run(Command::new("adb")
532 .arg("push")
533 .arg(build.src.join("src/etc/adb_run_wrapper.sh"))
534 .arg(ADB_TEST_DIR));
535
536 let target_dir = format!("{}/{}", ADB_TEST_DIR, target);
537 build.run(Command::new("adb").args(&["shell", "mkdir", &target_dir[..]]));
538
539 for f in t!(build.sysroot_libdir(compiler, target).read_dir()) {
540 let f = t!(f);
541 let name = f.file_name().into_string().unwrap();
542 if util::is_dylib(&name) {
543 build.run(Command::new("adb")
544 .arg("push")
545 .arg(f.path())
546 .arg(&target_dir));
547 }
548 }
Alex Crichtonbb9062a2016-04-29 21:23:15549}
Alex Crichtond38db822016-12-09 01:13:55550
551/// Run "distcheck", a 'make check' from a tarball
552pub fn distcheck(build: &Build) {
553 if build.config.build != "x86_64-unknown-linux-gnu" {
554 return
555 }
556 if !build.config.host.iter().any(|s| s == "x86_64-unknown-linux-gnu") {
557 return
558 }
559 if !build.config.target.iter().any(|s| s == "x86_64-unknown-linux-gnu") {
560 return
561 }
562
563 let dir = build.out.join("tmp").join("distcheck");
564 let _ = fs::remove_dir_all(&dir);
565 t!(fs::create_dir_all(&dir));
566
567 let mut cmd = Command::new("tar");
568 cmd.arg("-xzf")
569 .arg(dist::rust_src_location(build))
570 .arg("--strip-components=1")
571 .current_dir(&dir);
572 build.run(&mut cmd);
573 build.run(Command::new("./configure")
Alex Crichton4781eb32016-12-30 17:26:25574 .args(&build.config.configure_args)
Alex Crichtond38db822016-12-09 01:13:55575 .current_dir(&dir));
Sébastien Mariea7d90252016-12-17 19:09:23576 build.run(Command::new(build_helper::make(&build.config.build))
Alex Crichtond38db822016-12-09 01:13:55577 .arg("check")
578 .current_dir(&dir));
579}
Alex Crichton1a040b32016-12-31 03:50:57580
581/// Test the build system itself
582pub fn bootstrap(build: &Build) {
583 let mut cmd = Command::new(&build.cargo);
584 cmd.arg("test")
585 .current_dir(build.src.join("src/bootstrap"))
586 .env("CARGO_TARGET_DIR", build.out.join("bootstrap"))
587 .env("RUSTC", &build.rustc);
588 cmd.arg("--").args(&build.flags.cmd.test_args());
589 build.run(&mut cmd);
590}