2015-05-09 11:49:12 +02:00
|
|
|
extern crate compiletest_rs as compiletest;
|
2015-04-13 19:58:18 +02:00
|
|
|
|
|
|
|
use std::path::PathBuf;
|
2016-06-05 21:05:28 +02:00
|
|
|
use std::env::{set_var, var, temp_dir};
|
2015-04-13 19:58:18 +02:00
|
|
|
|
2016-04-14 21:24:46 +02:00
|
|
|
fn run_mode(dir: &'static str, mode: &'static str) {
|
2015-04-13 19:58:18 +02:00
|
|
|
let mut config = compiletest::default_config();
|
2015-08-11 20:22:20 +02:00
|
|
|
|
2015-04-13 19:58:18 +02:00
|
|
|
let cfg_mode = mode.parse().ok().expect("Invalid mode");
|
2016-02-05 00:36:06 +01:00
|
|
|
config.target_rustcflags = Some("-L target/debug/ -L target/debug/deps".to_owned());
|
2015-08-11 20:22:20 +02:00
|
|
|
if let Ok(name) = var::<&str>("TESTNAME") {
|
|
|
|
let s : String = name.to_owned();
|
|
|
|
config.filter = Some(s)
|
|
|
|
}
|
2015-04-13 19:58:18 +02:00
|
|
|
|
|
|
|
config.mode = cfg_mode;
|
2016-05-13 13:46:13 +02:00
|
|
|
if cfg!(windows) {
|
|
|
|
// work around https://github.com/laumann/compiletest-rs/issues/35 on msvc windows
|
|
|
|
config.build_base = temp_dir();
|
|
|
|
}
|
2016-04-14 21:24:46 +02:00
|
|
|
config.src_base = PathBuf::from(format!("tests/{}", dir));
|
2015-04-13 19:58:18 +02:00
|
|
|
|
|
|
|
compiletest::run_tests(&config);
|
|
|
|
}
|
|
|
|
|
2016-06-05 21:05:28 +02:00
|
|
|
fn prepare_env() {
|
|
|
|
set_var("CLIPPY_DISABLE_WIKI_LINKS", "true");
|
|
|
|
}
|
|
|
|
|
2015-04-13 19:58:18 +02:00
|
|
|
#[test]
|
2016-03-07 19:08:46 +01:00
|
|
|
#[cfg(not(feature = "test-regex_macros"))]
|
2015-04-13 19:58:18 +02:00
|
|
|
fn compile_test() {
|
2016-06-05 21:05:28 +02:00
|
|
|
prepare_env();
|
2016-04-14 21:24:46 +02:00
|
|
|
run_mode("run-pass", "run-pass");
|
|
|
|
run_mode("compile-fail", "compile-fail");
|
2015-04-13 19:58:18 +02:00
|
|
|
}
|
2016-03-07 19:08:46 +01:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
#[cfg(feature = "test-regex_macros")]
|
|
|
|
fn compile_test() {
|
2016-06-05 21:05:28 +02:00
|
|
|
prepare_env();
|
2016-04-14 21:24:46 +02:00
|
|
|
run_mode("run-pass-regex_macros", "run-pass");
|
|
|
|
run_mode("compile-fail-regex_macros", "compile-fail");
|
2016-03-07 19:08:46 +01:00
|
|
|
}
|