rust/tests/compiletest.rs

130 lines
4.0 KiB
Rust
Raw Normal View History

2019-07-09 21:55:04 -05:00
#![feature(custom_test_frameworks)]
// Custom test runner, to avoid libtest being wrapped around compiletest which wraps libtest.
#![test_runner(test_runner)]
2016-04-22 03:34:14 -05:00
2018-12-12 12:51:52 -06:00
use std::path::PathBuf;
use std::env;
2016-04-22 03:34:14 -05:00
use compiletest_rs as compiletest;
use colored::*;
fn miri_path() -> PathBuf {
if rustc_test_suite().is_some() {
PathBuf::from(option_env!("MIRI_PATH").unwrap())
} else {
PathBuf::from(concat!("target/", env!("PROFILE"), "/miri"))
}
}
fn rustc_test_suite() -> Option<PathBuf> {
option_env!("RUSTC_TEST_SUITE").map(PathBuf::from)
}
fn rustc_lib_path() -> PathBuf {
option_env!("RUSTC_LIB_PATH").unwrap().into()
}
2017-08-02 11:28:12 -05:00
fn run_tests(mode: &str, path: &str, target: &str, mut flags: Vec<String>) {
2019-07-31 06:48:15 -05:00
let in_rustc_test_suite = rustc_test_suite().is_some();
// Add some flags we always want.
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
}
if let Ok(sysroot) = std::env::var("MIRI_SYSROOT") {
flags.push(format!("--sysroot {}", sysroot));
}
// The rest of the configuration.
let mut config = compiletest::Config::default().tempdir();
config.mode = mode.parse().expect("Invalid mode");
config.rustc_path = miri_path();
2019-07-31 06:48:15 -05:00
if in_rustc_test_suite {
config.run_lib_path = rustc_lib_path();
config.compile_lib_path = rustc_lib_path();
}
config.filter = env::args().nth(1);
config.host = get_host();
config.src_base = PathBuf::from(path);
config.target = target.to_owned();
config.target_rustcflags = Some(flags.join(" "));
compiletest::run_tests(&config);
}
fn compile_fail(path: &str, target: &str, opt: bool) {
let opt_str = if opt { " with optimizations" } else { "" };
2018-07-12 04:26:09 -05:00
eprintln!("{}", format!(
"## Running compile-fail tests in {} against miri for target {}{}",
path,
target,
opt_str
2018-07-12 04:26:09 -05:00
).green().bold());
let mut flags = Vec::new();
if opt {
// Optimizing too aggressivley makes UB detection harder, but test at least
// the default value.
// FIXME: Opt level 3 ICEs during stack trace generation.
flags.push("-Zmir-opt-level=1".to_owned());
}
run_tests("compile-fail", path, target, flags);
}
fn miri_pass(path: &str, target: &str, opt: bool) {
let opt_str = if opt { " with optimizations" } else { "" };
2018-07-12 04:26:09 -05:00
eprintln!("{}", format!(
"## Running run-pass tests in {} against miri for target {}{}",
path,
target,
opt_str
2018-07-12 04:26:09 -05:00
).green().bold());
2017-07-20 09:05:14 -05:00
let mut flags = Vec::new();
if opt {
flags.push("-Zmir-opt-level=3".to_owned());
}
run_tests("ui", path, target, flags);
}
2017-07-19 14:52:20 -05:00
fn get_host() -> String {
2017-09-11 04:01:26 -05:00
let rustc = rustc_test_suite().unwrap_or(PathBuf::from("rustc"));
let rustc_version = std::process::Command::new(rustc)
2016-12-20 02:58:41 -06:00
.arg("-vV")
.output()
.expect("rustc not found for -vV")
.stdout;
let rustc_version = std::str::from_utf8(&rustc_version).expect("rustc -vV is not utf8");
let version_meta = rustc_version::version_meta_for(&rustc_version)
.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 {
std::env::var("MIRI_TEST_TARGET").unwrap_or_else(|_| get_host())
}
2017-07-19 14:52:20 -05:00
fn run_pass_miri(opt: bool) {
miri_pass("tests/run-pass", &get_target(), opt);
}
fn compile_fail_miri(opt: bool) {
2019-07-11 11:41:53 -05:00
compile_fail("tests/compile-fail", &get_target(), opt);
2017-07-19 14:52:20 -05:00
}
fn test_runner(_tests: &[&()]) {
2019-08-13 12:10:24 -05:00
// Add a test env var to do environment communication tests
std::env::set_var("MIRI_ENV_VAR_TEST", "0");
run_pass_miri(false);
run_pass_miri(true);
compile_fail_miri(false);
compile_fail_miri(true);
}