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;
|
2016-06-25 16:12:29 +00:00
|
|
|
use std::env::{set_var, var};
|
2015-04-13 17:58:18 +00:00
|
|
|
|
2016-04-14 19:24:46 +00:00
|
|
|
fn run_mode(dir: &'static str, mode: &'static str) {
|
2015-04-13 17:58:18 +00:00
|
|
|
let mut config = compiletest::default_config();
|
2015-08-11 18:22:20 +00:00
|
|
|
|
2016-08-17 16:35:25 +00:00
|
|
|
let cfg_mode = mode.parse().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") {
|
2016-06-05 23:42:39 +00:00
|
|
|
let s: String = name.to_owned();
|
2015-08-11 18:22:20 +00:00
|
|
|
config.filter = Some(s)
|
|
|
|
}
|
2015-04-13 17:58:18 +00:00
|
|
|
|
|
|
|
config.mode = cfg_mode;
|
2016-04-14 19:24:46 +00:00
|
|
|
config.src_base = PathBuf::from(format!("tests/{}", dir));
|
2015-04-13 17:58:18 +00:00
|
|
|
|
|
|
|
compiletest::run_tests(&config);
|
|
|
|
}
|
|
|
|
|
2016-06-05 19:05:28 +00:00
|
|
|
fn prepare_env() {
|
|
|
|
set_var("CLIPPY_DISABLE_WIKI_LINKS", "true");
|
|
|
|
}
|
|
|
|
|
2015-04-13 17:58:18 +00:00
|
|
|
#[test]
|
|
|
|
fn compile_test() {
|
2016-06-05 19:05:28 +00:00
|
|
|
prepare_env();
|
2016-04-14 19:24:46 +00:00
|
|
|
run_mode("run-pass", "run-pass");
|
|
|
|
run_mode("compile-fail", "compile-fail");
|
2015-04-13 17:58:18 +00:00
|
|
|
}
|