-
Notifications
You must be signed in to change notification settings - Fork 385
create a miri-pass test that allows us to run miri for arbitrary targets #27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
82dc95c
create a miri-pass test that allows us to run miri for arbitrary targets
oli-obk 506f2de
actually execute miri-pass tests
oli-obk 9cceef0
simplify target name extraction
oli-obk 06d1780
fix travis
oli-obk 6a5f737
travis didn't fail when compiling miri on nightly
oli-obk af36ec9
undo all travis script changes
oli-obk b6fca73
error out if a run-pass test fails
oli-obk 453a22a
forward `RUST_SYSROOT` to miri test calls
oli-obk 2ed6f1c
caught by travis
oli-obk f01be91
miri needs to be *built* with RUST_SYSROOT, not *run*
oli-obk 60f2bb9
miri knows about `--sysroot`
oli-obk File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,4 +21,4 @@ log = "0.3.6" | |
log_settings = "0.1.1" | ||
|
||
[dev-dependencies] | ||
compiletest_rs = "0.1.1" | ||
compiletest_rs = "0.2" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,89 @@ | ||
extern crate compiletest_rs as compiletest; | ||
|
||
use std::path::PathBuf; | ||
use std::path::{PathBuf, Path}; | ||
use std::io::Write; | ||
|
||
fn run_mode(mode: &'static str) { | ||
fn run_mode(dir: &'static str, mode: &'static str, sysroot: &str) { | ||
// Disable rustc's new error fomatting. It breaks these tests. | ||
std::env::remove_var("RUST_NEW_ERROR_FORMAT"); | ||
|
||
// Taken from https://github.com/Manishearth/rust-clippy/pull/911. | ||
let home = option_env!("RUSTUP_HOME").or(option_env!("MULTIRUST_HOME")); | ||
let toolchain = option_env!("RUSTUP_TOOLCHAIN").or(option_env!("MULTIRUST_TOOLCHAIN")); | ||
let sysroot = match (home, toolchain) { | ||
(Some(home), Some(toolchain)) => format!("{}/toolchains/{}", home, toolchain), | ||
_ => option_env!("RUST_SYSROOT") | ||
.expect("need to specify RUST_SYSROOT env var or use rustup or multirust") | ||
.to_owned(), | ||
}; | ||
let flags = format!("--sysroot {} -Dwarnings", sysroot); | ||
|
||
// FIXME: read directories in sysroot/lib/rustlib and generate the test targets from that | ||
let targets = &["x86_64-unknown-linux-gnu", "i686-unknown-linux-gnu"]; | ||
|
||
for &target in targets { | ||
use std::io::Write; | ||
let stderr = std::io::stderr(); | ||
write!(stderr.lock(), "running tests for target {}", target).unwrap(); | ||
for_all_targets(sysroot, |target| { | ||
let mut config = compiletest::default_config(); | ||
config.host_rustcflags = Some(flags.clone()); | ||
config.mode = mode.parse().expect("Invalid mode"); | ||
config.run_lib_path = format!("{}/lib/rustlib/{}/lib", sysroot, target); | ||
config.run_lib_path = Path::new(sysroot).join("lib").join("rustlib").join(&target).join("lib"); | ||
config.rustc_path = "target/debug/miri".into(); | ||
config.src_base = PathBuf::from(format!("tests/{}", mode)); | ||
config.src_base = PathBuf::from(format!("tests/{}", dir)); | ||
config.target = target.to_owned(); | ||
config.target_rustcflags = Some(flags.clone()); | ||
compiletest::run_tests(&config); | ||
}); | ||
} | ||
|
||
fn for_all_targets<F: FnMut(String)>(sysroot: &str, mut f: F) { | ||
for target in std::fs::read_dir(format!("{}/lib/rustlib/", sysroot)).unwrap() { | ||
let target = target.unwrap(); | ||
if !target.metadata().unwrap().is_dir() { | ||
continue; | ||
} | ||
let target = target.file_name().into_string().unwrap(); | ||
if target == "etc" { | ||
continue; | ||
} | ||
let stderr = std::io::stderr(); | ||
writeln!(stderr.lock(), "running tests for target {}", target).unwrap(); | ||
f(target); | ||
} | ||
} | ||
|
||
#[test] | ||
fn compile_test() { | ||
run_mode("compile-fail"); | ||
run_mode("run-pass"); | ||
let mut failed = false; | ||
// Taken from https://github.com/Manishearth/rust-clippy/pull/911. | ||
let home = option_env!("RUSTUP_HOME").or(option_env!("MULTIRUST_HOME")); | ||
let toolchain = option_env!("RUSTUP_TOOLCHAIN").or(option_env!("MULTIRUST_TOOLCHAIN")); | ||
let sysroot = match (home, toolchain) { | ||
(Some(home), Some(toolchain)) => format!("{}/toolchains/{}", home, toolchain), | ||
_ => option_env!("RUST_SYSROOT") | ||
.expect("need to specify RUST_SYSROOT env var or use rustup or multirust") | ||
.to_owned(), | ||
}; | ||
run_mode("compile-fail", "compile-fail", &sysroot); | ||
for_all_targets(&sysroot, |target| { | ||
for file in std::fs::read_dir("tests/run-pass").unwrap() { | ||
let file = file.unwrap(); | ||
if !file.metadata().unwrap().is_file() { | ||
continue; | ||
} | ||
let file = file.path(); | ||
let stderr = std::io::stderr(); | ||
write!(stderr.lock(), "test [miri-pass] {} ", file.to_str().unwrap()).unwrap(); | ||
let mut cmd = std::process::Command::new("target/debug/miri"); | ||
cmd.arg(file); | ||
cmd.arg("-Dwarnings"); | ||
cmd.arg(format!("--target={}", target)); | ||
let libs = Path::new(&sysroot).join("lib"); | ||
let sysroot = libs.join("rustlib").join(&target).join("lib"); | ||
let paths = std::env::join_paths(&[libs, sysroot]).unwrap(); | ||
cmd.env(compiletest::procsrv::dylib_env_var(), paths); | ||
match cmd.output() { | ||
Ok(ref output) if output.status.success() => writeln!(stderr.lock(), "ok").unwrap(), | ||
Ok(output) => { | ||
failed = true; | ||
writeln!(stderr.lock(), "FAILED with exit code {}", output.status.code().unwrap_or(0)).unwrap(); | ||
writeln!(stderr.lock(), "stdout: \n {}", std::str::from_utf8(&output.stdout).unwrap()).unwrap(); | ||
writeln!(stderr.lock(), "stderr: \n {}", std::str::from_utf8(&output.stderr).unwrap()).unwrap(); | ||
} | ||
Err(e) => { | ||
failed = true; | ||
writeln!(stderr.lock(), "FAILED: {}", e).unwrap(); | ||
}, | ||
} | ||
} | ||
let stderr = std::io::stderr(); | ||
writeln!(stderr.lock(), "").unwrap(); | ||
}); | ||
if failed { | ||
panic!("some tests failed"); | ||
} | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It seems like this
cmd
never gets executed, only args and env are set.