2017-11-14 13:56:00 +00:00
|
|
|
#![feature(test)]
|
|
|
|
|
2015-05-09 09:49:12 +00:00
|
|
|
extern crate compiletest_rs as compiletest;
|
2017-11-14 13:56:00 +00:00
|
|
|
extern crate test;
|
2015-04-13 17:58:18 +00:00
|
|
|
|
2018-03-15 15:08:49 +00:00
|
|
|
use std::path::{Path, PathBuf};
|
2016-06-25 16:12:29 +00:00
|
|
|
use std::env::{set_var, var};
|
2015-04-13 17:58:18 +00:00
|
|
|
|
2017-09-18 10:47:33 +00: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"))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-14 13:56:00 +00:00
|
|
|
fn host_libs() -> PathBuf {
|
|
|
|
if let Some(path) = option_env!("HOST_LIBS") {
|
|
|
|
PathBuf::from(path)
|
|
|
|
} else {
|
|
|
|
Path::new("target").join(env!("PROFILE"))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn rustc_test_suite() -> Option<PathBuf> {
|
|
|
|
option_env!("RUSTC_TEST_SUITE").map(PathBuf::from)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn rustc_lib_path() -> PathBuf {
|
|
|
|
option_env!("RUSTC_LIB_PATH").unwrap().into()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn config(dir: &'static str, mode: &'static str) -> compiletest::Config {
|
2017-08-02 16:07:05 +00:00
|
|
|
let mut config = compiletest::Config::default();
|
2015-08-11 18:22:20 +00:00
|
|
|
|
2016-08-17 16:35:25 +00:00
|
|
|
let cfg_mode = mode.parse().expect("Invalid mode");
|
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
|
|
|
|
2017-11-14 13:56:00 +00:00
|
|
|
if rustc_test_suite().is_some() {
|
|
|
|
config.run_lib_path = rustc_lib_path();
|
|
|
|
config.compile_lib_path = rustc_lib_path();
|
|
|
|
}
|
2018-03-15 15:08:49 +00:00
|
|
|
config.target_rustcflags = Some(format!(
|
|
|
|
"-L {0} -L {0}/deps -Dwarnings",
|
|
|
|
host_libs().display()
|
|
|
|
));
|
2017-11-14 13:56:00 +00:00
|
|
|
|
2015-04-13 17:58:18 +00:00
|
|
|
config.mode = cfg_mode;
|
2018-01-16 16:06:27 +00:00
|
|
|
config.build_base = if rustc_test_suite().is_some() {
|
2018-02-01 13:35:56 +00:00
|
|
|
// we don't need access to the stderr files on travis
|
|
|
|
let mut path = PathBuf::from(env!("OUT_DIR"));
|
|
|
|
path.push("test_build_base");
|
|
|
|
path
|
2018-01-16 16:06:27 +00:00
|
|
|
} else {
|
2017-11-09 05:47:14 +00:00
|
|
|
let mut path = std::env::current_dir().unwrap();
|
|
|
|
path.push("target/debug/test_build_base");
|
|
|
|
path
|
|
|
|
};
|
2016-04-14 19:24:46 +00:00
|
|
|
config.src_base = PathBuf::from(format!("tests/{}", dir));
|
2017-09-18 10:47:33 +00:00
|
|
|
config.rustc_path = clippy_driver_path();
|
2017-11-14 13:56:00 +00:00
|
|
|
config
|
|
|
|
}
|
2015-04-13 17:58:18 +00:00
|
|
|
|
2017-11-14 13:56:00 +00:00
|
|
|
fn run_mode(dir: &'static str, mode: &'static str) {
|
|
|
|
compiletest::run_tests(&config(dir, mode));
|
2015-04-13 17:58:18 +00:00
|
|
|
}
|
|
|
|
|
2016-06-05 19:05:28 +00:00
|
|
|
fn prepare_env() {
|
2017-09-01 08:29:49 +00:00
|
|
|
set_var("CLIPPY_DISABLE_DOCS_LINKS", "true");
|
2017-09-18 10:47:33 +00:00
|
|
|
set_var("CLIPPY_TESTS", "true");
|
2018-03-13 14:02:40 +00:00
|
|
|
//set_var("RUST_BACKTRACE", "0");
|
2016-06-05 19:05:28 +00:00
|
|
|
}
|
|
|
|
|
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");
|
2017-02-07 20:05:30 +00:00
|
|
|
run_mode("ui", "ui");
|
2015-04-13 17:58:18 +00:00
|
|
|
}
|