rust/tests/compiletest.rs

94 lines
3.0 KiB
Rust
Raw Normal View History

use std::env;
2019-12-23 05:56:23 -06:00
use std::path::PathBuf;
2016-04-22 03:34:14 -05:00
use colored::*;
2019-12-23 05:56:23 -06:00
use compiletest_rs as compiletest;
fn miri_path() -> PathBuf {
PathBuf::from(option_env!("MIRI").unwrap_or(env!("CARGO_BIN_EXE_miri")))
}
2017-08-02 11:28:12 -05:00
fn run_tests(mode: &str, path: &str, target: &str) {
let in_rustc_test_suite = option_env!("RUSTC_STAGE").is_some();
2019-07-31 06:48:15 -05:00
// Add some flags we always want.
let mut flags = Vec::new();
2019-07-31 06:48:49 -05:00
flags.push("--edition 2018".to_owned());
2019-08-21 02:07:27 -05:00
if in_rustc_test_suite {
// Less aggressive warnings to make the rustc toolstate management less painful.
// (We often get warnings when e.g. a feature gets stabilized or some lint gets added/improved.)
flags.push("-Astable-features".to_owned());
} else {
flags.push("-Dwarnings -Dunused".to_owned()); // overwrite the -Aunused in compiletest-rs
}
2020-10-22 03:36:01 -05:00
if let Ok(sysroot) = env::var("MIRI_SYSROOT") {
flags.push(format!("--sysroot {}", sysroot));
}
2020-10-22 03:36:01 -05:00
if let Ok(extra_flags) = env::var("MIRIFLAGS") {
flags.push(extra_flags);
}
let flags = flags.join(" ");
eprintln!(" Compiler flags: {}", flags);
// The rest of the configuration.
let mut config = compiletest::Config::default().tempdir();
config.mode = mode.parse().expect("Invalid mode");
config.rustc_path = miri_path();
if let Some(lib_path) = option_env!("RUSTC_LIB_PATH") {
config.run_lib_path = PathBuf::from(lib_path);
config.compile_lib_path = PathBuf::from(lib_path);
}
2021-04-04 04:45:09 -05:00
config.filters = env::args().nth(1).into_iter().collect();
config.host = get_host();
config.src_base = PathBuf::from(path);
config.target = target.to_owned();
config.target_rustcflags = Some(flags);
compiletest::run_tests(&config);
}
fn compile_fail(path: &str, target: &str) {
2019-12-23 05:56:23 -06:00
eprintln!(
"{}",
2020-05-11 03:54:21 -05:00
format!("## Running compile-fail tests in {} against miri for target {}", path, target)
.green()
.bold()
2019-12-23 05:56:23 -06:00
);
run_tests("compile-fail", path, target);
}
fn miri_pass(path: &str, target: &str) {
2019-12-23 05:56:23 -06:00
eprintln!(
"{}",
2020-05-11 03:54:21 -05:00
format!("## Running run-pass tests in {} against miri for target {}", path, target)
.green()
.bold()
2019-12-23 05:56:23 -06:00
);
run_tests("ui", path, target);
}
2017-07-19 14:52:20 -05:00
fn get_host() -> String {
2020-05-11 03:54:21 -05:00
let version_meta =
rustc_version::VersionMeta::for_command(std::process::Command::new(miri_path()))
.expect("failed to parse rustc version info");
version_meta.host
2017-07-19 14:52:20 -05:00
}
2017-02-07 05:32:39 -06:00
fn get_target() -> String {
2020-10-22 03:36:01 -05:00
env::var("MIRI_TEST_TARGET").unwrap_or_else(|_| get_host())
}
2017-07-19 14:52:20 -05:00
fn main() {
// Add a test env var to do environment communication tests.
2020-10-22 03:36:01 -05:00
env::set_var("MIRI_ENV_VAR_TEST", "0");
// Let the tests know where to store temp files (they might run for a different target, which can make this hard to find).
2020-10-22 03:36:01 -05:00
env::set_var("MIRI_TEMP", env::temp_dir());
// Panic tests expect backtraces to be printed.
env::set_var("RUST_BACKTRACE", "1");
2019-08-13 12:10:24 -05:00
let target = get_target();
miri_pass("tests/run-pass", &target);
compile_fail("tests/compile-fail", &target);
}