2015-05-09 04:49:12 -05:00
|
|
|
extern crate compiletest_rs as compiletest;
|
2015-04-13 12:58:18 -05:00
|
|
|
|
|
|
|
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");
|
2015-05-25 18:45:15 -05:00
|
|
|
config.target_rustcflags = Some("-l regex_macros -L target/debug/".to_string());
|
2015-04-13 12:58:18 -05:00
|
|
|
|
|
|
|
config.mode = cfg_mode;
|
|
|
|
config.src_base = PathBuf::from(format!("tests/{}", mode));
|
|
|
|
|
|
|
|
compiletest::run_tests(&config);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn compile_test() {
|
|
|
|
run_mode("compile-fail");
|
|
|
|
}
|