blob: 32cce45e067ad443d8c59163be72509c5835c867 [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
Jorge Aparicio775a9362017-02-03 23:58:47239 if build.config.sanitizers {
240 cmd.env("SANITIZER_SUPPORT", "1");
241 }
242
Alex Crichton39a5d3f2016-06-28 20:31:30243 cmd.arg("--adb-path").arg("adb");
244 cmd.arg("--adb-test-dir").arg(ADB_TEST_DIR);
245 if target.contains("android") {
246 // Assume that cc for this target comes from the android sysroot
247 cmd.arg("--android-cross-path")
248 .arg(build.cc(target).parent().unwrap().parent().unwrap());
249 } else {
250 cmd.arg("--android-cross-path").arg("");
251 }
252
Alex Crichton0e272de2016-11-16 20:31:19253 let _time = util::timeit();
Alex Crichtonb325baf2016-04-05 18:34:23254 build.run(&mut cmd);
255}
Alex Crichtonede89442016-04-15 01:00:35256
Alex Crichtonf72bfe62016-05-02 22:16:15257/// Run `rustdoc --test` for all documentation in `src/doc`.
258///
259/// This will run all tests in our markdown documentation (e.g. the book)
260/// located in `src/doc`. The `rustdoc` that's run is the one that sits next to
261/// `compiler`.
Alex Crichtonede89442016-04-15 01:00:35262pub fn docs(build: &Build, compiler: &Compiler) {
Alex Crichtonf72bfe62016-05-02 22:16:15263 // Do a breadth-first traversal of the `src/doc` directory and just run
264 // tests for all files that end in `*.md`
Alex Crichtonede89442016-04-15 01:00:35265 let mut stack = vec![build.src.join("src/doc")];
Alex Crichton0e272de2016-11-16 20:31:19266 let _time = util::timeit();
Alex Crichtonede89442016-04-15 01:00:35267
268 while let Some(p) = stack.pop() {
269 if p.is_dir() {
270 stack.extend(t!(p.read_dir()).map(|p| t!(p).path()));
271 continue
272 }
273
274 if p.extension().and_then(|s| s.to_str()) != Some("md") {
275 continue
276 }
277
278 println!("doc tests for: {}", p.display());
279 markdown_test(build, compiler, &p);
280 }
281}
282
Alex Crichtonf72bfe62016-05-02 22:16:15283/// Run the error index generator tool to execute the tests located in the error
284/// index.
285///
286/// The `error_index_generator` tool lives in `src/tools` and is used to
287/// generate a markdown file from the error indexes of the code base which is
288/// then passed to `rustdoc --test`.
Alex Crichtonede89442016-04-15 01:00:35289pub fn error_index(build: &Build, compiler: &Compiler) {
290 println!("Testing error-index stage{}", compiler.stage);
291
Alex Crichton860c6ab2016-11-08 17:59:46292 let dir = testdir(build, compiler.host);
293 t!(fs::create_dir_all(&dir));
294 let output = dir.join("error-index.md");
Alex Crichton0e272de2016-11-16 20:31:19295
296 let _time = util::timeit();
Alex Crichton254876e2016-12-28 23:01:21297 build.run(build.tool_cmd(&Compiler::new(0, compiler.host),
298 "error_index_generator")
Alex Crichtonede89442016-04-15 01:00:35299 .arg("markdown")
300 .arg(&output)
301 .env("CFG_BUILD", &build.config.build));
302
303 markdown_test(build, compiler, &output);
304}
305
306fn markdown_test(build: &Build, compiler: &Compiler, markdown: &Path) {
307 let mut cmd = Command::new(build.rustdoc(compiler));
308 build.add_rustc_lib_path(compiler, &mut cmd);
Alex Crichton0e272de2016-11-16 20:31:19309 build.add_rust_test_threads(&mut cmd);
Alex Crichtonede89442016-04-15 01:00:35310 cmd.arg("--test");
311 cmd.arg(markdown);
Alex Crichton6f62fae2016-12-12 17:03:35312 cmd.env("RUSTC_BOOTSTRAP", "1");
Corey Farwellc8c6d2c2016-10-30 01:58:52313
Alex Crichtona270b802016-10-21 20:18:09314 let mut test_args = build.flags.cmd.test_args().join(" ");
Corey Farwellc8c6d2c2016-10-30 01:58:52315 if build.config.quiet_tests {
316 test_args.push_str(" --quiet");
317 }
318 cmd.arg("--test-args").arg(test_args);
319
Alex Crichtonede89442016-04-15 01:00:35320 build.run(&mut cmd);
321}
Alex Crichtonbb9062a2016-04-29 21:23:15322
323/// Run all unit tests plus documentation tests for an entire crate DAG defined
324/// by a `Cargo.toml`
325///
326/// This is what runs tests for crates like the standard library, compiler, etc.
327/// It essentially is the driver for running `cargo test`.
328///
329/// Currently this runs all tests for a DAG by passing a bunch of `-p foo`
Alex Crichton147e2da2016-10-07 06:30:38330/// arguments, and those arguments are discovered from `cargo metadata`.
Alex Crichtonbb9062a2016-04-29 21:23:15331pub fn krate(build: &Build,
332 compiler: &Compiler,
333 target: &str,
Alex Crichtona270b802016-10-21 20:18:09334 mode: Mode,
Ulrik Sverdrupb1566ba2016-11-25 21:13:59335 test_kind: TestKind,
Alex Crichtona270b802016-10-21 20:18:09336 krate: Option<&str>) {
Alex Crichton147e2da2016-10-07 06:30:38337 let (name, path, features, root) = match mode {
Ahmed Charles9ca382f2016-09-02 08:55:29338 Mode::Libstd => {
Jorge Aparicio775a9362017-02-03 23:58:47339 ("libstd", "src/rustc/std_shim", build.std_features(), "std_shim")
Ahmed Charles9ca382f2016-09-02 08:55:29340 }
341 Mode::Libtest => {
Alex Crichton147e2da2016-10-07 06:30:38342 ("libtest", "src/rustc/test_shim", String::new(), "test_shim")
Ahmed Charles9ca382f2016-09-02 08:55:29343 }
344 Mode::Librustc => {
Alex Crichton147e2da2016-10-07 06:30:38345 ("librustc", "src/rustc", build.rustc_features(), "rustc-main")
Ahmed Charles9ca382f2016-09-02 08:55:29346 }
Alex Crichtonbb9062a2016-04-29 21:23:15347 _ => panic!("can only test libraries"),
348 };
Ulrik Sverdrupb1566ba2016-11-25 21:13:59349 println!("{} {} stage{} ({} -> {})", test_kind, name, compiler.stage,
Alex Crichtonbb9062a2016-04-29 21:23:15350 compiler.host, target);
351
Alex Crichton7046fea2016-12-25 23:20:33352 // If we're not doing a full bootstrap but we're testing a stage2 version of
353 // libstd, then what we're actually testing is the libstd produced in
354 // stage1. Reflect that here by updating the compiler that we're working
355 // with automatically.
356 let compiler = if build.force_use_stage1(compiler, target) {
357 Compiler::new(1, compiler.host)
358 } else {
359 compiler.clone()
360 };
361
Alex Crichtonbb9062a2016-04-29 21:23:15362 // Build up the base `cargo test` command.
Alex Crichton147e2da2016-10-07 06:30:38363 //
364 // Pass in some standard flags then iterate over the graph we've discovered
365 // in `cargo metadata` with the maps above and figure out what `-p`
366 // arguments need to get passed.
Alex Crichton7046fea2016-12-25 23:20:33367 let mut cargo = build.cargo(&compiler, mode, target, test_kind.subcommand());
Alex Crichtonbb9062a2016-04-29 21:23:15368 cargo.arg("--manifest-path")
369 .arg(build.src.join(path).join("Cargo.toml"))
370 .arg("--features").arg(features);
371
Alex Crichtona270b802016-10-21 20:18:09372 match krate {
373 Some(krate) => {
374 cargo.arg("-p").arg(krate);
Alex Crichtonbb9062a2016-04-29 21:23:15375 }
Alex Crichtona270b802016-10-21 20:18:09376 None => {
377 let mut visited = HashSet::new();
378 let mut next = vec![root];
379 while let Some(name) = next.pop() {
Alex Crichton36a926a2017-01-13 23:11:34380 // Right now jemalloc is our only target-specific crate in the
381 // sense that it's not present on all platforms. Custom skip it
382 // here for now, but if we add more this probably wants to get
383 // more generalized.
384 //
385 // Also skip `build_helper` as it's not compiled normally for
386 // target during the bootstrap and it's just meant to be a
387 // helper crate, not tested. If it leaks through then it ends up
388 // messing with various mtime calculations and such.
389 if !name.contains("jemalloc") && name != "build_helper" {
Vadim Petrochenkovb4abb722017-02-02 20:55:42390 cargo.arg("-p").arg(&format!("{}:0.0.0", name));
Alex Crichtona270b802016-10-21 20:18:09391 }
392 for dep in build.crates[name].deps.iter() {
393 if visited.insert(dep) {
394 next.push(dep);
395 }
396 }
Alex Crichtonbb9062a2016-04-29 21:23:15397 }
398 }
Alex Crichtonbb9062a2016-04-29 21:23:15399 }
400
401 // The tests are going to run with the *target* libraries, so we need to
402 // ensure that those libraries show up in the LD_LIBRARY_PATH equivalent.
403 //
404 // Note that to run the compiler we need to run with the *host* libraries,
405 // but our wrapper scripts arrange for that to be the case anyway.
406 let mut dylib_path = dylib_path();
Alex Crichton7046fea2016-12-25 23:20:33407 dylib_path.insert(0, build.sysroot_libdir(&compiler, target));
Alex Crichtonbb9062a2016-04-29 21:23:15408 cargo.env(dylib_path_var(), env::join_paths(&dylib_path).unwrap());
Alex Crichtonbb9062a2016-04-29 21:23:15409
Alex Crichton0e272de2016-11-16 20:31:19410 if target.contains("android") {
411 cargo.arg("--no-run");
412 } else if target.contains("emscripten") {
413 cargo.arg("--no-run");
414 }
415
416 cargo.arg("--");
417
Corey Farwellc8c6d2c2016-10-30 01:58:52418 if build.config.quiet_tests {
Corey Farwellc8c6d2c2016-10-30 01:58:52419 cargo.arg("--quiet");
420 }
421
Alex Crichton0e272de2016-11-16 20:31:19422 let _time = util::timeit();
423
Alex Crichton39a5d3f2016-06-28 20:31:30424 if target.contains("android") {
Alex Crichton0e272de2016-11-16 20:31:19425 build.run(&mut cargo);
Alex Crichton7046fea2016-12-25 23:20:33426 krate_android(build, &compiler, target, mode);
Brian Andersonb8b50f02016-09-06 00:41:50427 } else if target.contains("emscripten") {
Alex Crichton0e272de2016-11-16 20:31:19428 build.run(&mut cargo);
Alex Crichton7046fea2016-12-25 23:20:33429 krate_emscripten(build, &compiler, target, mode);
Alex Crichton39a5d3f2016-06-28 20:31:30430 } else {
Alex Crichtona270b802016-10-21 20:18:09431 cargo.args(&build.flags.cmd.test_args());
Alex Crichton39a5d3f2016-06-28 20:31:30432 build.run(&mut cargo);
433 }
434}
435
436fn krate_android(build: &Build,
437 compiler: &Compiler,
438 target: &str,
439 mode: Mode) {
440 let mut tests = Vec::new();
441 let out_dir = build.cargo_out(compiler, mode, target);
442 find_tests(&out_dir, target, &mut tests);
443 find_tests(&out_dir.join("deps"), target, &mut tests);
444
445 for test in tests {
446 build.run(Command::new("adb").arg("push").arg(&test).arg(ADB_TEST_DIR));
447
448 let test_file_name = test.file_name().unwrap().to_string_lossy();
449 let log = format!("{}/check-stage{}-T-{}-H-{}-{}.log",
450 ADB_TEST_DIR,
451 compiler.stage,
452 target,
453 compiler.host,
454 test_file_name);
Alex Crichton0e272de2016-11-16 20:31:19455 let quiet = if build.config.quiet_tests { "--quiet" } else { "" };
Alex Crichton39a5d3f2016-06-28 20:31:30456 let program = format!("(cd {dir}; \
457 LD_LIBRARY_PATH=./{target} ./{test} \
458 --logfile {log} \
Alex Crichton0e272de2016-11-16 20:31:19459 {quiet} \
Alex Crichton39a5d3f2016-06-28 20:31:30460 {args})",
461 dir = ADB_TEST_DIR,
462 target = target,
463 test = test_file_name,
464 log = log,
Alex Crichton0e272de2016-11-16 20:31:19465 quiet = quiet,
Alex Crichtona270b802016-10-21 20:18:09466 args = build.flags.cmd.test_args().join(" "));
Alex Crichton39a5d3f2016-06-28 20:31:30467
468 let output = output(Command::new("adb").arg("shell").arg(&program));
469 println!("{}", output);
Alex Crichton31876722017-01-01 01:42:40470
471 t!(fs::create_dir_all(build.out.join("tmp")));
Alex Crichton39a5d3f2016-06-28 20:31:30472 build.run(Command::new("adb")
473 .arg("pull")
474 .arg(&log)
475 .arg(build.out.join("tmp")));
476 build.run(Command::new("adb").arg("shell").arg("rm").arg(&log));
477 if !output.contains("result: ok") {
478 panic!("some tests failed");
479 }
480 }
481}
482
Brian Andersonb8b50f02016-09-06 00:41:50483fn krate_emscripten(build: &Build,
484 compiler: &Compiler,
485 target: &str,
486 mode: Mode) {
Ross Schulmanad9184c2016-09-05 23:56:48487 let mut tests = Vec::new();
488 let out_dir = build.cargo_out(compiler, mode, target);
489 find_tests(&out_dir, target, &mut tests);
490 find_tests(&out_dir.join("deps"), target, &mut tests);
491
492 for test in tests {
493 let test_file_name = test.to_string_lossy().into_owned();
Brian Andersonfcd32792016-09-06 20:36:14494 println!("running {}", test_file_name);
Brian Anderson8401e372016-09-15 19:42:26495 let nodejs = build.config.nodejs.as_ref().expect("nodejs not configured");
Alex Crichton0e272de2016-11-16 20:31:19496 let mut cmd = Command::new(nodejs);
Alex Crichton03fb5ad2016-12-08 01:26:48497 cmd.arg(&test_file_name);
Alex Crichton0e272de2016-11-16 20:31:19498 if build.config.quiet_tests {
499 cmd.arg("--quiet");
500 }
501 build.run(&mut cmd);
Ross Schulmanad9184c2016-09-05 23:56:48502 }
503 }
504
505
Alex Crichton39a5d3f2016-06-28 20:31:30506fn find_tests(dir: &Path,
507 target: &str,
508 dst: &mut Vec<PathBuf>) {
509 for e in t!(dir.read_dir()).map(|e| t!(e)) {
510 let file_type = t!(e.file_type());
511 if !file_type.is_file() {
512 continue
513 }
514 let filename = e.file_name().into_string().unwrap();
515 if (target.contains("windows") && filename.ends_with(".exe")) ||
Ross Schulmanad9184c2016-09-05 23:56:48516 (!target.contains("windows") && !filename.contains(".")) ||
Brian Andersonfcd32792016-09-06 20:36:14517 (target.contains("emscripten") && filename.contains(".js")){
Alex Crichton39a5d3f2016-06-28 20:31:30518 dst.push(e.path());
519 }
520 }
521}
522
523pub fn android_copy_libs(build: &Build,
524 compiler: &Compiler,
525 target: &str) {
Alex Crichtoncf8fde12016-12-31 02:54:05526 if !target.contains("android") {
527 return
528 }
529
Alex Crichton39a5d3f2016-06-28 20:31:30530 println!("Android copy libs to emulator ({})", target);
Alex Crichton31876722017-01-01 01:42:40531 build.run(Command::new("adb").arg("wait-for-device"));
Alex Crichton39a5d3f2016-06-28 20:31:30532 build.run(Command::new("adb").arg("remount"));
533 build.run(Command::new("adb").args(&["shell", "rm", "-r", ADB_TEST_DIR]));
534 build.run(Command::new("adb").args(&["shell", "mkdir", ADB_TEST_DIR]));
535 build.run(Command::new("adb")
536 .arg("push")
537 .arg(build.src.join("src/etc/adb_run_wrapper.sh"))
538 .arg(ADB_TEST_DIR));
539
540 let target_dir = format!("{}/{}", ADB_TEST_DIR, target);
541 build.run(Command::new("adb").args(&["shell", "mkdir", &target_dir[..]]));
542
543 for f in t!(build.sysroot_libdir(compiler, target).read_dir()) {
544 let f = t!(f);
545 let name = f.file_name().into_string().unwrap();
546 if util::is_dylib(&name) {
547 build.run(Command::new("adb")
548 .arg("push")
549 .arg(f.path())
550 .arg(&target_dir));
551 }
552 }
Alex Crichtonbb9062a2016-04-29 21:23:15553}
Alex Crichtond38db822016-12-09 01:13:55554
555/// Run "distcheck", a 'make check' from a tarball
556pub fn distcheck(build: &Build) {
557 if build.config.build != "x86_64-unknown-linux-gnu" {
558 return
559 }
560 if !build.config.host.iter().any(|s| s == "x86_64-unknown-linux-gnu") {
561 return
562 }
563 if !build.config.target.iter().any(|s| s == "x86_64-unknown-linux-gnu") {
564 return
565 }
566
567 let dir = build.out.join("tmp").join("distcheck");
568 let _ = fs::remove_dir_all(&dir);
569 t!(fs::create_dir_all(&dir));
570
571 let mut cmd = Command::new("tar");
572 cmd.arg("-xzf")
573 .arg(dist::rust_src_location(build))
574 .arg("--strip-components=1")
575 .current_dir(&dir);
576 build.run(&mut cmd);
577 build.run(Command::new("./configure")
Alex Crichton4781eb32016-12-30 17:26:25578 .args(&build.config.configure_args)
Alex Crichtond38db822016-12-09 01:13:55579 .current_dir(&dir));
Sébastien Mariea7d90252016-12-17 19:09:23580 build.run(Command::new(build_helper::make(&build.config.build))
Alex Crichtond38db822016-12-09 01:13:55581 .arg("check")
582 .current_dir(&dir));
583}
Alex Crichton1a040b32016-12-31 03:50:57584
585/// Test the build system itself
586pub fn bootstrap(build: &Build) {
587 let mut cmd = Command::new(&build.cargo);
588 cmd.arg("test")
589 .current_dir(build.src.join("src/bootstrap"))
590 .env("CARGO_TARGET_DIR", build.out.join("bootstrap"))
591 .env("RUSTC", &build.rustc);
592 cmd.arg("--").args(&build.flags.cmd.test_args());
593 build.run(&mut cmd);
594}