2015-05-09 09:49:12 +00:00
|
|
|
extern crate compiletest_rs as compiletest;
|
2015-04-13 17:58:18 +00:00
|
|
|
|
|
|
|
use std::path::PathBuf;
|
2015-06-06 00:07:48 +00:00
|
|
|
use std::env::var;
|
2015-04-13 17:58:18 +00:00
|
|
|
|
|
|
|
fn run_mode(mode: &'static str) {
|
|
|
|
let mut config = compiletest::default_config();
|
2015-08-11 18:22:20 +00:00
|
|
|
|
2015-04-13 17:58:18 +00:00
|
|
|
let cfg_mode = mode.parse().ok().expect("Invalid mode");
|
2016-02-04 23:36:06 +00:00
|
|
|
config.target_rustcflags = Some("-L target/debug/ -L target/debug/deps".to_owned());
|
2015-08-11 18:22:20 +00:00
|
|
|
if let Ok(name) = var::<&str>("TESTNAME") {
|
|
|
|
let s : String = name.to_owned();
|
|
|
|
config.filter = Some(s)
|
|
|
|
}
|
2015-04-13 17:58:18 +00:00
|
|
|
|
|
|
|
config.mode = cfg_mode;
|
|
|
|
config.src_base = PathBuf::from(format!("tests/{}", mode));
|
|
|
|
|
|
|
|
compiletest::run_tests(&config);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2016-03-07 18:08:46 +00:00
|
|
|
#[cfg(not(feature = "test-regex_macros"))]
|
2015-04-13 17:58:18 +00:00
|
|
|
fn compile_test() {
|
2016-02-08 10:28:18 +00:00
|
|
|
run_mode("run-pass");
|
2015-04-13 17:58:18 +00:00
|
|
|
run_mode("compile-fail");
|
|
|
|
}
|
2016-03-07 18:08:46 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
#[cfg(feature = "test-regex_macros")]
|
|
|
|
fn compile_test() {
|
|
|
|
run_mode("run-pass-regex_macros");
|
|
|
|
run_mode("compile-fail-regex_macros");
|
|
|
|
}
|