rust/tests/compiletest.rs

159 lines
5.2 KiB
Rust
Raw Normal View History

2017-08-03 14:39:55 -05:00
#![feature(slice_concat_ext, const_fn)]
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();
}
}
2017-08-03 14:39:55 -05:00
const fn miri_path() -> &'static str {
concat!("target/", env!("PROFILE"), "/miri")
}
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::default_config();
config.mode = "compile-fail".parse().expect("Invalid mode");
config.rustc_path = miri_path().into();
if fullmir {
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());
}
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::default_config();
config.mode = "run-pass".parse().expect("Invalid mode");
config.src_base = PathBuf::from(path);
config.target_rustcflags = Some("-Dwarnings".to_string());
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::default_config();
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().into();
2017-07-20 09:05:14 -05:00
let mut flags = Vec::new();
2017-06-21 01:55:32 -05:00
if fullmir {
if host != target {
// skip fullmir on nonhost
return;
}
2017-06-21 01:55:32 -05:00
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());
2017-06-21 01:55:32 -05:00
}
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());
if target == host {
std::env::set_var("MIRI_HOST_TARGET", "yes");
}
compiletest::run_tests(&config);
std::env::set_var("MIRI_HOST_TARGET", "");
}
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; }
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 {
2016-12-20 02:58:41 -06:00
let host = std::process::Command::new("rustc")
.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
2017-07-19 14:52:20 -05:00
#[test]
fn run_pass_miri() {
let sysroot = get_sysroot();
let host = get_host();
2017-07-20 09:05:14 -05:00
for &opt in [false, true].iter() {
for_all_targets(&sysroot, |target| {
miri_pass("tests/run-pass", &target, &host, false, opt);
2017-07-20 09:05:14 -05:00
});
miri_pass("tests/run-pass-fullmir", &host, &host, true, opt);
2017-07-20 09:05:14 -05:00
}
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
}