]> git.lizzy.rs Git - rust.git/blob - tests/compiletest.rs
Fix merge conflicts
[rust.git] / tests / compiletest.rs
1 #![feature(custom_test_frameworks)]
2 // Custom test runner, to avoid libtest being wrapped around compiletest which wraps libtest.
3 #![test_runner(test_runner)]
4
5 use std::path::PathBuf;
6 use std::env;
7
8 use compiletest_rs as compiletest;
9 use colored::*;
10
11 fn miri_path() -> PathBuf {
12     if rustc_test_suite().is_some() {
13         PathBuf::from(option_env!("MIRI_PATH").unwrap())
14     } else {
15         PathBuf::from(concat!("target/", env!("PROFILE"), "/miri"))
16     }
17 }
18
19 fn rustc_test_suite() -> Option<PathBuf> {
20     option_env!("RUSTC_TEST_SUITE").map(PathBuf::from)
21 }
22
23 fn rustc_lib_path() -> PathBuf {
24     option_env!("RUSTC_LIB_PATH").unwrap().into()
25 }
26
27 fn run_tests(mode: &str, path: &str, target: &str, mut flags: Vec<String>) {
28     let in_rustc_test_suite = rustc_test_suite().is_some();
29     // Add some flags we always want.
30     flags.push("--edition 2018".to_owned());
31     if in_rustc_test_suite {
32         // Less aggressive warnings to make the rustc toolstate management less painful.
33         // (We often get warnings when e.g. a feature gets stabilized or some lint gets added/improved.)
34         flags.push("-Astable-features".to_owned());
35     } else {
36         flags.push("-Dwarnings -Dunused".to_owned()); // overwrite the -Aunused in compiletest-rs
37     }
38     if let Ok(sysroot) = std::env::var("MIRI_SYSROOT") {
39         flags.push(format!("--sysroot {}", sysroot));
40     }
41
42     // The rest of the configuration.
43     let mut config = compiletest::Config::default().tempdir();
44     config.mode = mode.parse().expect("Invalid mode");
45     config.rustc_path = miri_path();
46     if in_rustc_test_suite {
47         config.run_lib_path = rustc_lib_path();
48         config.compile_lib_path = rustc_lib_path();
49     }
50     config.filter = env::args().nth(1);
51     config.host = get_host();
52     config.src_base = PathBuf::from(path);
53     config.target = target.to_owned();
54     config.target_rustcflags = Some(flags.join(" "));
55     compiletest::run_tests(&config);
56 }
57
58 fn compile_fail(path: &str, target: &str, opt: bool) {
59     let opt_str = if opt { " with optimizations" } else { "" };
60     eprintln!("{}", format!(
61         "## Running compile-fail tests in {} against miri for target {}{}",
62         path,
63         target,
64         opt_str
65     ).green().bold());
66
67     let mut flags = Vec::new();
68     if opt {
69         // FIXME: Opt level 2 ICEs during stack trace generation.
70         // See https://github.com/rust-lang/rust/issues/66077.
71         flags.push("-Zmir-opt-level=1".to_owned());
72     }
73
74     run_tests("compile-fail", path, target, flags);
75 }
76
77 fn miri_pass(path: &str, target: &str, opt: bool) {
78     let opt_str = if opt { " with optimizations" } else { "" };
79     eprintln!("{}", format!(
80         "## Running run-pass tests in {} against miri for target {}{}",
81         path,
82         target,
83         opt_str
84     ).green().bold());
85
86     let mut flags = Vec::new();
87     if opt {
88         flags.push("-Zmir-opt-level=3".to_owned());
89     }
90
91     run_tests("ui", path, target, flags);
92 }
93
94 fn get_host() -> String {
95     let rustc = rustc_test_suite().unwrap_or(PathBuf::from("rustc"));
96     let rustc_version = std::process::Command::new(rustc)
97         .arg("-vV")
98         .output()
99         .expect("rustc not found for -vV")
100         .stdout;
101     let rustc_version = std::str::from_utf8(&rustc_version).expect("rustc -vV is not utf8");
102     let version_meta = rustc_version::version_meta_for(&rustc_version)
103         .expect("failed to parse rustc version info");
104     version_meta.host
105 }
106
107 fn get_target() -> String {
108     std::env::var("MIRI_TEST_TARGET").unwrap_or_else(|_| get_host())
109 }
110
111 fn run_pass_miri(opt: bool) {
112     miri_pass("tests/run-pass", &get_target(), opt);
113 }
114
115 fn compile_fail_miri(opt: bool) {
116     compile_fail("tests/compile-fail", &get_target(), opt);
117 }
118
119 fn test_runner(_tests: &[&()]) {
120     // Add a test env var to do environment communication tests
121     std::env::set_var("MIRI_ENV_VAR_TEST", "0");
122
123     run_pass_miri(false);
124     run_pass_miri(true);
125
126     compile_fail_miri(false);
127     compile_fail_miri(true);
128 }