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;
|
2016-06-25 11:12:29 -05:00
|
|
|
use std::env::{set_var, var};
|
2015-04-13 12:58:18 -05:00
|
|
|
|
2017-09-18 05:47:33 -05:00
|
|
|
fn clippy_driver_path() -> PathBuf {
|
|
|
|
if let Some(path) = option_env!("CLIPPY_DRIVER_PATH") {
|
|
|
|
PathBuf::from(path)
|
|
|
|
} else {
|
|
|
|
PathBuf::from(concat!("target/", env!("PROFILE"), "/clippy-driver"))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-14 14:24:46 -05:00
|
|
|
fn run_mode(dir: &'static str, mode: &'static str) {
|
2017-08-02 11:07:05 -05:00
|
|
|
let mut config = compiletest::Config::default();
|
2015-08-11 13:22:20 -05:00
|
|
|
|
2016-08-17 11:35:25 -05:00
|
|
|
let cfg_mode = mode.parse().expect("Invalid mode");
|
2017-08-01 10:54:21 -05:00
|
|
|
config.target_rustcflags = Some("-L target/debug/ -L target/debug/deps -Dwarnings".to_owned());
|
2015-08-11 13:22:20 -05:00
|
|
|
if let Ok(name) = var::<&str>("TESTNAME") {
|
2016-06-05 18:42:39 -05:00
|
|
|
let s: String = name.to_owned();
|
2015-08-11 13:22:20 -05:00
|
|
|
config.filter = Some(s)
|
|
|
|
}
|
2015-04-13 12:58:18 -05:00
|
|
|
|
|
|
|
config.mode = cfg_mode;
|
2017-11-08 20:05:49 -06:00
|
|
|
config.build_base = PathBuf::from("target/debug/test_build_base")
|
|
|
|
.canonicalize()
|
|
|
|
.unwrap();
|
2016-04-14 14:24:46 -05:00
|
|
|
config.src_base = PathBuf::from(format!("tests/{}", dir));
|
2017-09-18 05:47:33 -05:00
|
|
|
config.rustc_path = clippy_driver_path();
|
2015-04-13 12:58:18 -05:00
|
|
|
|
|
|
|
compiletest::run_tests(&config);
|
|
|
|
}
|
|
|
|
|
2016-06-05 14:05:28 -05:00
|
|
|
fn prepare_env() {
|
2017-09-01 03:29:49 -05:00
|
|
|
set_var("CLIPPY_DISABLE_DOCS_LINKS", "true");
|
2017-09-18 05:47:33 -05:00
|
|
|
set_var("CLIPPY_TESTS", "true");
|
|
|
|
set_var("RUST_BACKTRACE", "0");
|
2016-06-05 14:05:28 -05:00
|
|
|
}
|
|
|
|
|
2015-04-13 12:58:18 -05:00
|
|
|
#[test]
|
|
|
|
fn compile_test() {
|
2016-06-05 14:05:28 -05:00
|
|
|
prepare_env();
|
2016-04-14 14:24:46 -05:00
|
|
|
run_mode("run-pass", "run-pass");
|
2017-02-07 14:05:30 -06:00
|
|
|
run_mode("ui", "ui");
|
2015-04-13 12:58:18 -05:00
|
|
|
}
|