rust/tests/compiletest.rs

215 lines
7.0 KiB
Rust
Raw Normal View History

2017-08-03 14:58:24 -05:00
#![feature(slice_concat_ext)]
2017-07-20 09:05:14 -05:00
2016-04-22 03:34:14 -05:00
extern crate compiletest_rs as compiletest;
2017-07-20 09:05:14 -05:00
use std::slice::SliceConcatExt;
use std::path::{PathBuf, Path};
use std::io::Write;
2016-04-22 03:34:14 -05:00
macro_rules! eprintln {
($($arg:tt)*) => {
let stderr = std::io::stderr();
writeln!(stderr.lock(), $($arg)*).unwrap();
}
}
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 compile_fail(sysroot: &Path, path: &str, target: &str, host: &str, fullmir: bool) {
eprintln!(
"## Running compile-fail tests in {} against miri for target {}",
path,
target
);
let mut config = compiletest::Config::default().tempdir();
config.mode = "compile-fail".parse().expect("Invalid mode");
config.rustc_path = miri_path();
let mut flags = Vec::new();
if rustc_test_suite().is_some() {
config.run_lib_path = rustc_lib_path();
config.compile_lib_path = rustc_lib_path();
}
// if we are building as part of the rustc test suite, we already have fullmir for everything
if fullmir && rustc_test_suite().is_none() {
if host != target {
// skip fullmir on nonhost
return;
}
let sysroot = Path::new(&std::env::var("HOME").unwrap())
.join(".xargo")
.join("HOST");
config.target_rustcflags = Some(format!("--sysroot {}", sysroot.to_str().unwrap()));
config.src_base = PathBuf::from(path.to_string());
} else {
config.target_rustcflags = Some(format!("--sysroot {}", sysroot.to_str().unwrap()));
config.src_base = PathBuf::from(path.to_string());
}
flags.push("-Zmir-emit-validate=1".to_owned());
config.target_rustcflags = Some(flags.join(" "));
config.target = target.to_owned();
compiletest::run_tests(&config);
}
fn run_pass(path: &str) {
eprintln!("## Running run-pass tests in {} against rustc", path);
let mut config = compiletest::Config::default().tempdir();
config.mode = "run-pass".parse().expect("Invalid mode");
config.src_base = PathBuf::from(path);
if let Some(rustc_path) = rustc_test_suite() {
config.rustc_path = rustc_path;
config.run_lib_path = rustc_lib_path();
config.compile_lib_path = rustc_lib_path();
2017-08-10 12:39:32 -05:00
config.target_rustcflags = Some(format!("-Dwarnings --sysroot {}", get_sysroot().display()));
} else {
config.target_rustcflags = Some("-Dwarnings".to_owned());
}
config.host_rustcflags = Some("-Dwarnings".to_string());
compiletest::run_tests(&config);
}
2017-07-20 09:05:14 -05:00
fn miri_pass(path: &str, target: &str, host: &str, fullmir: bool, opt: bool) {
let opt_str = if opt { " with optimizations" } else { "" };
eprintln!(
"## Running run-pass tests in {} against miri for target {}{}",
path,
target,
opt_str
);
let mut config = compiletest::Config::default().tempdir();
config.mode = "mir-opt".parse().expect("Invalid mode");
config.src_base = PathBuf::from(path);
config.target = target.to_owned();
2017-01-12 01:45:09 -06:00
config.host = host.to_owned();
config.rustc_path = miri_path();
if rustc_test_suite().is_some() {
config.run_lib_path = rustc_lib_path();
config.compile_lib_path = rustc_lib_path();
}
2017-07-20 09:05:14 -05:00
let mut flags = Vec::new();
// if we are building as part of the rustc test suite, we already have fullmir for everything
if fullmir && rustc_test_suite().is_none() {
if host != target {
// skip fullmir on nonhost
return;
}
let sysroot = Path::new(&std::env::var("HOME").unwrap())
.join(".xargo")
.join("HOST");
2017-07-20 09:05:14 -05:00
flags.push(format!("--sysroot {}", sysroot.to_str().unwrap()));
}
if opt {
flags.push("-Zmir-opt-level=3".to_owned());
} else {
flags.push("-Zmir-opt-level=0".to_owned());
// For now, only validate without optimizations. Inlining breaks validation.
flags.push("-Zmir-emit-validate=1".to_owned());
2017-06-21 01:55:32 -05:00
}
if target == host {
flags.push("--miri_host_target".to_owned());
}
2017-07-20 09:05:14 -05:00
config.target_rustcflags = Some(flags.join(" "));
// don't actually execute the final binary, it might be for other targets and we only care
// about running miri, not the binary.
config.runtool = Some("echo \"\" || ".to_owned());
compiletest::run_tests(&config);
}
2016-12-17 02:54:37 -06:00
fn is_target_dir<P: Into<PathBuf>>(path: P) -> bool {
let mut path = path.into();
path.push("lib");
path.metadata().map(|m| m.is_dir()).unwrap_or(false)
}
2016-12-20 02:58:41 -06:00
fn for_all_targets<F: FnMut(String)>(sysroot: &Path, mut f: F) {
let target_dir = sysroot.join("lib").join("rustlib");
for entry in std::fs::read_dir(target_dir).expect("invalid sysroot") {
2016-12-17 02:54:37 -06:00
let entry = entry.unwrap();
if !is_target_dir(entry.path()) {
continue;
}
2016-12-17 02:54:37 -06:00
let target = entry.file_name().into_string().unwrap();
f(target);
2016-05-31 05:05:25 -05:00
}
2016-04-22 03:34:14 -05:00
}
2017-07-19 14:52:20 -05:00
fn get_sysroot() -> PathBuf {
let sysroot = std::env::var("MIRI_SYSROOT").unwrap_or_else(|_| {
let sysroot = std::process::Command::new("rustc")
.arg("--print")
.arg("sysroot")
.output()
.expect("rustc not found")
.stdout;
String::from_utf8(sysroot).expect("sysroot is not utf8")
});
2017-07-19 14:52:20 -05:00
PathBuf::from(sysroot.trim())
}
fn get_host() -> String {
2017-09-11 04:01:26 -05:00
let rustc = rustc_test_suite().unwrap_or(PathBuf::from("rustc"));
println!("using rustc at {}", rustc.display());
let host = std::process::Command::new(rustc)
2016-12-20 02:58:41 -06:00
.arg("-vV")
.output()
.expect("rustc not found for -vV")
.stdout;
let host = std::str::from_utf8(&host).expect("sysroot is not utf8");
let host = host.split("\nhost: ").nth(1).expect(
"no host: part in rustc -vV",
);
let host = host.split('\n').next().expect("no \n after host");
2017-07-19 14:52:20 -05:00
String::from(host)
}
2017-02-07 05:32:39 -06:00
fn run_pass_miri(opt: bool) {
2017-07-19 14:52:20 -05:00
let sysroot = get_sysroot();
let host = get_host();
for_all_targets(&sysroot, |target| {
miri_pass("tests/run-pass", &target, &host, false, opt);
});
miri_pass("tests/run-pass-fullmir", &host, &host, true, opt);
}
#[test]
fn run_pass_miri_noopt() {
run_pass_miri(false);
}
#[test]
fn run_pass_miri_opt() {
// FIXME: Disabled for now, as the optimizer is pretty broken and crashes...
//run_pass_miri(true);
2017-07-19 14:52:20 -05:00
}
#[test]
fn run_pass_rustc() {
run_pass("tests/run-pass");
run_pass("tests/run-pass-fullmir");
2017-07-19 14:52:20 -05:00
}
#[test]
fn compile_fail_miri() {
let sysroot = get_sysroot();
let host = get_host();
for_all_targets(&sysroot, |target| {
compile_fail(&sysroot, "tests/compile-fail", &target, &host, false);
2017-07-19 14:52:20 -05:00
});
compile_fail(&sysroot, "tests/compile-fail-fullmir", &host, &host, true);
2017-07-19 14:52:20 -05:00
}