mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
47 lines
1.3 KiB
Rust
47 lines
1.3 KiB
Rust
extern crate compiletest_rs as compiletest;
|
|
|
|
use std::path::PathBuf;
|
|
use std::env::{set_var, var};
|
|
|
|
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"))
|
|
}
|
|
}
|
|
|
|
fn run_mode(dir: &'static str, mode: &'static str) {
|
|
let mut config = compiletest::Config::default();
|
|
|
|
let cfg_mode = mode.parse().expect("Invalid mode");
|
|
config.target_rustcflags = Some("-L target/debug/ -L target/debug/deps -Dwarnings".to_owned());
|
|
if let Ok(name) = var::<&str>("TESTNAME") {
|
|
let s: String = name.to_owned();
|
|
config.filter = Some(s)
|
|
}
|
|
|
|
config.mode = cfg_mode;
|
|
config.build_base = {
|
|
let mut path = std::env::current_dir().unwrap();
|
|
path.push("target/debug/test_build_base");
|
|
path
|
|
};
|
|
config.src_base = PathBuf::from(format!("tests/{}", dir));
|
|
config.rustc_path = clippy_driver_path();
|
|
|
|
compiletest::run_tests(&config);
|
|
}
|
|
|
|
fn prepare_env() {
|
|
set_var("CLIPPY_DISABLE_DOCS_LINKS", "true");
|
|
set_var("CLIPPY_TESTS", "true");
|
|
set_var("RUST_BACKTRACE", "0");
|
|
}
|
|
|
|
#[test]
|
|
fn compile_test() {
|
|
prepare_env();
|
|
run_mode("run-pass", "run-pass");
|
|
run_mode("ui", "ui");
|
|
}
|