2016-09-09 00:09:35 +00:00
|
|
|
extern crate compiletest_rs as compiletest;
|
|
|
|
|
|
|
|
use std::path::PathBuf;
|
|
|
|
|
|
|
|
fn run_mode(mode: &'static str) {
|
2017-08-03 00:37:20 +00:00
|
|
|
let mut config = compiletest::Config::default();
|
2017-01-05 02:00:26 +00:00
|
|
|
let cfg_mode = mode.parse().expect("Invalid mode");
|
2016-09-09 00:09:35 +00:00
|
|
|
|
|
|
|
config.mode = cfg_mode;
|
|
|
|
config.src_base = PathBuf::from(format!("tests/{}", mode));
|
2018-01-13 18:18:11 +00:00
|
|
|
|
|
|
|
#[cfg(debug_assertions)]
|
2016-09-12 08:51:02 +00:00
|
|
|
let flags = [
|
2017-02-02 08:41:47 +00:00
|
|
|
"-L crate=../target/debug/",
|
|
|
|
"-L dependency=../target/debug/deps/",
|
2016-09-12 08:51:02 +00:00
|
|
|
].join(" ");
|
2016-09-09 00:09:35 +00:00
|
|
|
|
2018-01-13 18:18:11 +00:00
|
|
|
#[cfg(not(debug_assertions))]
|
|
|
|
let flags = [
|
|
|
|
"-L crate=../target/release/",
|
|
|
|
"-L dependency=../target/release/deps/",
|
|
|
|
].join(" ");
|
|
|
|
|
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");
|
|
|
|
}
|