2016-09-09 00:09:35 +00:00
|
|
|
extern crate compiletest_rs as compiletest;
|
|
|
|
|
|
|
|
use std::path::PathBuf;
|
|
|
|
|
|
|
|
fn run_mode(mode: &'static str) {
|
|
|
|
let mut config = compiletest::default_config();
|
|
|
|
let cfg_mode = mode.parse().ok().expect("Invalid mode");
|
|
|
|
|
|
|
|
config.mode = cfg_mode;
|
|
|
|
config.src_base = PathBuf::from(format!("tests/{}", mode));
|
2016-09-12 08:51:02 +00:00
|
|
|
let flags = [
|
|
|
|
"-L ../target/debug/",
|
|
|
|
"-L ../target/debug/deps/",
|
|
|
|
"-L target/debug/",
|
|
|
|
"-L target/debug/deps/"
|
|
|
|
].join(" ");
|
2016-09-09 00:09:35 +00:00
|
|
|
|
2016-09-12 08:51:02 +00:00
|
|
|
config.target_rustcflags = Some(flags);
|
2016-09-09 00:09:35 +00:00
|
|
|
compiletest::run_tests(&config);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn compile_test() {
|
|
|
|
run_mode("compile-fail");
|
|
|
|
run_mode("run-pass");
|
|
|
|
}
|