2020-02-09 05:00:49 +00:00
|
|
|
#![feature(test)] // compiletest_rs requires this attribute
|
2022-01-10 19:20:46 +00:00
|
|
|
#![feature(once_cell)]
|
2021-09-08 13:19:14 +00:00
|
|
|
#![cfg_attr(feature = "deny-warnings", deny(warnings))]
|
|
|
|
#![warn(rust_2018_idioms, unused_lifetimes)]
|
2017-11-14 13:56:00 +00:00
|
|
|
|
2018-12-29 16:46:25 +00:00
|
|
|
use compiletest_rs as compiletest;
|
2020-02-01 10:04:04 +00:00
|
|
|
use compiletest_rs::common::Mode as TestMode;
|
2015-04-13 17:58:18 +00:00
|
|
|
|
2021-09-03 20:24:29 +00:00
|
|
|
use std::collections::HashMap;
|
2021-05-06 20:43:19 +00:00
|
|
|
use std::env::{self, remove_var, set_var, var_os};
|
|
|
|
use std::ffi::{OsStr, OsString};
|
2018-05-30 18:29:00 +00:00
|
|
|
use std::fs;
|
2018-06-07 17:16:50 +00:00
|
|
|
use std::io;
|
2022-01-30 16:39:30 +00:00
|
|
|
use std::lazy::SyncLazy;
|
2018-05-22 08:21:42 +00:00
|
|
|
use std::path::{Path, PathBuf};
|
2022-01-10 19:20:46 +00:00
|
|
|
use test_utils::IS_RUSTC_TEST_SUITE;
|
2015-04-13 17:58:18 +00:00
|
|
|
|
2022-01-10 19:20:46 +00:00
|
|
|
mod test_utils;
|
2019-11-07 07:01:25 +00:00
|
|
|
|
2020-12-06 14:01:03 +00:00
|
|
|
// whether to run internal tests or not
|
2022-01-10 00:22:38 +00:00
|
|
|
const RUN_INTERNAL_TESTS: bool = cfg!(feature = "internal");
|
2020-12-06 14:01:03 +00:00
|
|
|
|
2021-09-03 20:24:29 +00:00
|
|
|
/// All crates used in UI tests are listed here
|
|
|
|
static TEST_DEPENDENCIES: &[&str] = &[
|
|
|
|
"clippy_utils",
|
|
|
|
"derive_new",
|
2021-12-27 16:17:17 +00:00
|
|
|
"futures",
|
2021-09-03 20:24:29 +00:00
|
|
|
"if_chain",
|
|
|
|
"itertools",
|
|
|
|
"quote",
|
|
|
|
"regex",
|
|
|
|
"serde",
|
|
|
|
"serde_derive",
|
|
|
|
"syn",
|
2021-12-27 16:17:17 +00:00
|
|
|
"tokio",
|
2021-11-11 01:59:31 +00:00
|
|
|
"parking_lot",
|
2022-01-19 16:35:52 +00:00
|
|
|
"rustc_semver",
|
2021-09-03 20:24:29 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
// Test dependencies may need an `extern crate` here to ensure that they show up
|
|
|
|
// in the depinfo file (otherwise cargo thinks they are unused)
|
2021-09-08 13:19:14 +00:00
|
|
|
#[allow(unused_extern_crates)]
|
2021-09-03 20:24:29 +00:00
|
|
|
extern crate clippy_utils;
|
2021-09-08 13:19:14 +00:00
|
|
|
#[allow(unused_extern_crates)]
|
2021-09-03 20:24:29 +00:00
|
|
|
extern crate derive_new;
|
2021-09-08 13:19:14 +00:00
|
|
|
#[allow(unused_extern_crates)]
|
2021-12-27 16:17:17 +00:00
|
|
|
extern crate futures;
|
|
|
|
#[allow(unused_extern_crates)]
|
2021-09-03 20:24:29 +00:00
|
|
|
extern crate if_chain;
|
2021-09-08 13:19:14 +00:00
|
|
|
#[allow(unused_extern_crates)]
|
2021-09-03 20:24:29 +00:00
|
|
|
extern crate itertools;
|
2021-09-08 13:19:14 +00:00
|
|
|
#[allow(unused_extern_crates)]
|
2021-11-11 01:59:31 +00:00
|
|
|
extern crate parking_lot;
|
|
|
|
#[allow(unused_extern_crates)]
|
2021-09-03 20:24:29 +00:00
|
|
|
extern crate quote;
|
2021-09-08 13:19:14 +00:00
|
|
|
#[allow(unused_extern_crates)]
|
2022-01-19 16:35:52 +00:00
|
|
|
extern crate rustc_semver;
|
|
|
|
#[allow(unused_extern_crates)]
|
2021-09-03 20:24:29 +00:00
|
|
|
extern crate syn;
|
2021-12-27 16:17:17 +00:00
|
|
|
#[allow(unused_extern_crates)]
|
|
|
|
extern crate tokio;
|
2021-09-03 20:24:29 +00:00
|
|
|
|
|
|
|
/// Produces a string with an `--extern` flag for all UI test crate
|
|
|
|
/// dependencies.
|
|
|
|
///
|
|
|
|
/// The dependency files are located by parsing the depinfo file for this test
|
|
|
|
/// module. This assumes the `-Z binary-dep-depinfo` flag is enabled. All test
|
|
|
|
/// dependencies must be added to Cargo.toml at the project root. Test
|
|
|
|
/// dependencies that are not *directly* used by this test module require an
|
|
|
|
/// `extern crate` declaration.
|
2022-01-30 16:39:30 +00:00
|
|
|
static EXTERN_FLAGS: SyncLazy<String> = SyncLazy::new(|| {
|
2021-09-03 20:24:29 +00:00
|
|
|
let current_exe_depinfo = {
|
|
|
|
let mut path = env::current_exe().unwrap();
|
|
|
|
path.set_extension("d");
|
2022-01-30 16:39:30 +00:00
|
|
|
fs::read_to_string(path).unwrap()
|
2021-09-03 20:24:29 +00:00
|
|
|
};
|
|
|
|
let mut crates: HashMap<&str, &str> = HashMap::with_capacity(TEST_DEPENDENCIES.len());
|
|
|
|
for line in current_exe_depinfo.lines() {
|
|
|
|
// each dependency is expected to have a Makefile rule like `/path/to/crate-hash.rlib:`
|
|
|
|
let parse_name_path = || {
|
|
|
|
if line.starts_with(char::is_whitespace) {
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
let path_str = line.strip_suffix(':')?;
|
|
|
|
let path = Path::new(path_str);
|
|
|
|
if !matches!(path.extension()?.to_str()?, "rlib" | "so" | "dylib" | "dll") {
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
let (name, _hash) = path.file_stem()?.to_str()?.rsplit_once('-')?;
|
|
|
|
// the "lib" prefix is not present for dll files
|
|
|
|
let name = name.strip_prefix("lib").unwrap_or(name);
|
|
|
|
Some((name, path_str))
|
|
|
|
};
|
|
|
|
if let Some((name, path)) = parse_name_path() {
|
|
|
|
if TEST_DEPENDENCIES.contains(&name) {
|
|
|
|
// A dependency may be listed twice if it is available in sysroot,
|
|
|
|
// and the sysroot dependencies are listed first. As of the writing,
|
|
|
|
// this only seems to apply to if_chain.
|
|
|
|
crates.insert(name, path);
|
|
|
|
}
|
2020-02-09 05:00:49 +00:00
|
|
|
}
|
|
|
|
}
|
2021-09-03 20:24:29 +00:00
|
|
|
let not_found: Vec<&str> = TEST_DEPENDENCIES
|
|
|
|
.iter()
|
|
|
|
.copied()
|
|
|
|
.filter(|n| !crates.contains_key(n))
|
|
|
|
.collect();
|
2021-09-14 08:28:09 +00:00
|
|
|
assert!(
|
|
|
|
not_found.is_empty(),
|
2021-09-23 18:14:46 +00:00
|
|
|
"dependencies not found in depinfo: {:?}\n\
|
|
|
|
help: Make sure the `-Z binary-dep-depinfo` rust flag is enabled\n\
|
|
|
|
help: Try adding to dev-dependencies in Cargo.toml",
|
2021-09-14 08:28:09 +00:00
|
|
|
not_found
|
|
|
|
);
|
2021-09-03 20:24:29 +00:00
|
|
|
crates
|
|
|
|
.into_iter()
|
2021-09-08 15:45:44 +00:00
|
|
|
.map(|(name, path)| format!(" --extern {}={}", name, path))
|
2021-09-03 20:24:29 +00:00
|
|
|
.collect()
|
2022-01-30 16:39:30 +00:00
|
|
|
});
|
2017-11-14 13:56:00 +00:00
|
|
|
|
2022-01-30 16:39:30 +00:00
|
|
|
fn base_config(test_dir: &str) -> compiletest::Config {
|
2021-10-23 07:42:52 +00:00
|
|
|
let mut config = compiletest::Config {
|
|
|
|
edition: Some("2021".into()),
|
2022-01-30 16:39:30 +00:00
|
|
|
mode: TestMode::Ui,
|
2021-10-23 07:42:52 +00:00
|
|
|
..compiletest::Config::default()
|
|
|
|
};
|
2015-08-11 18:22:20 +00:00
|
|
|
|
2021-02-25 10:25:22 +00:00
|
|
|
if let Ok(filters) = env::var("TESTNAME") {
|
2022-01-30 16:39:30 +00:00
|
|
|
config.filters = filters.split(',').map(ToString::to_string).collect();
|
2015-08-11 18:22:20 +00:00
|
|
|
}
|
2015-04-13 17:58:18 +00:00
|
|
|
|
2020-02-09 05:00:49 +00:00
|
|
|
if let Some(path) = option_env!("RUSTC_LIB_PATH") {
|
|
|
|
let path = PathBuf::from(path);
|
2020-02-01 10:04:04 +00:00
|
|
|
config.run_lib_path = path.clone();
|
|
|
|
config.compile_lib_path = path;
|
2017-11-14 13:56:00 +00:00
|
|
|
}
|
2022-01-30 16:39:30 +00:00
|
|
|
let current_exe_path = env::current_exe().unwrap();
|
2021-09-08 15:41:09 +00:00
|
|
|
let deps_path = current_exe_path.parent().unwrap();
|
2021-09-08 15:55:08 +00:00
|
|
|
let profile_path = deps_path.parent().unwrap();
|
2019-04-22 13:04:48 +00:00
|
|
|
|
2021-09-03 20:24:29 +00:00
|
|
|
// Using `-L dependency={}` enforces that external dependencies are added with `--extern`.
|
|
|
|
// This is valuable because a) it allows us to monitor what external dependencies are used
|
|
|
|
// and b) it ensures that conflicting rlibs are resolved properly.
|
2021-09-08 15:45:44 +00:00
|
|
|
let host_libs = option_env!("HOST_LIBS")
|
|
|
|
.map(|p| format!(" -L dependency={}", Path::new(p).join("deps").display()))
|
|
|
|
.unwrap_or_default();
|
2018-12-27 15:57:23 +00:00
|
|
|
config.target_rustcflags = Some(format!(
|
2021-09-08 15:45:44 +00:00
|
|
|
"--emit=metadata -Dwarnings -Zui-testing -L dependency={}{}{}",
|
2021-09-08 15:41:09 +00:00
|
|
|
deps_path.display(),
|
2021-09-08 15:45:44 +00:00
|
|
|
host_libs,
|
2022-01-30 16:39:30 +00:00
|
|
|
&*EXTERN_FLAGS,
|
2018-12-27 15:57:23 +00:00
|
|
|
));
|
2017-11-14 13:56:00 +00:00
|
|
|
|
2022-01-30 16:39:30 +00:00
|
|
|
config.src_base = Path::new("tests").join(test_dir);
|
|
|
|
config.build_base = profile_path.join("test").join(test_dir);
|
2021-09-08 15:55:08 +00:00
|
|
|
config.rustc_path = profile_path.join(if cfg!(windows) {
|
|
|
|
"clippy-driver.exe"
|
|
|
|
} else {
|
|
|
|
"clippy-driver"
|
|
|
|
});
|
2017-11-14 13:56:00 +00:00
|
|
|
config
|
|
|
|
}
|
2015-04-13 17:58:18 +00:00
|
|
|
|
2022-01-30 16:39:30 +00:00
|
|
|
fn run_ui() {
|
|
|
|
let config = base_config("ui");
|
2021-05-06 20:43:19 +00:00
|
|
|
// use tests/clippy.toml
|
2022-01-30 16:39:30 +00:00
|
|
|
let _g = VarGuard::set("CARGO_MANIFEST_DIR", fs::canonicalize("tests").unwrap());
|
tests: default to more threads for ui-tests
Benchmarks (tested on i5-7200U, 2 core 4 threads)
```
master branch:
cargo test // prime caches
cargo --color=always test 70,39s user 21,91s system 180% cpu 51,035 total
cargo --color=always test 70,77s user 22,13s system 180% cpu 51,579 total
cargo --color=always test 70,97s user 22,12s system 180% cpu 51,673 total
cargo --color=always nextest run 78,74s user 22,27s system 220% cpu 45,829 total
cargo --color=always nextest run 78,46s user 21,92s system 224% cpu 44,674 total
cargo --color=always nextest run 78,31s user 22,21s system 228% cpu 43,909 total
Patched (ui_speedup branch)
cargo test // prime cache
cargo --color=always test 97,51s user 32,02s system 288% cpu 44,905 total
cargo --color=always test 99,19s user 31,91s system 276% cpu 47,436 total
cargo --color=always test 98,47s user 31,84s system 284% cpu 45,744 total
cargo --color=always nextest run 102,18s user 30,80s system 350% cpu 37,902 total
cargo --color=always nextest run 99,75s user 29,86s system 350% cpu 36,935 total
cargo --color=always nextest run 100,36s user 29,93s system 351% cpu 37,061 total
```
2022-02-20 12:45:37 +00:00
|
|
|
let _threads = VarGuard::set(
|
|
|
|
"RUST_TEST_THREADS",
|
|
|
|
// if RUST_TEST_THREADS is set, adhere to it, otherwise override it
|
2022-03-01 19:56:03 +00:00
|
|
|
env::var("RUST_TEST_THREADS").unwrap_or_else(|_| {
|
|
|
|
std::thread::available_parallelism()
|
|
|
|
.map_or(1, std::num::NonZeroUsize::get)
|
|
|
|
.to_string()
|
|
|
|
}),
|
tests: default to more threads for ui-tests
Benchmarks (tested on i5-7200U, 2 core 4 threads)
```
master branch:
cargo test // prime caches
cargo --color=always test 70,39s user 21,91s system 180% cpu 51,035 total
cargo --color=always test 70,77s user 22,13s system 180% cpu 51,579 total
cargo --color=always test 70,97s user 22,12s system 180% cpu 51,673 total
cargo --color=always nextest run 78,74s user 22,27s system 220% cpu 45,829 total
cargo --color=always nextest run 78,46s user 21,92s system 224% cpu 44,674 total
cargo --color=always nextest run 78,31s user 22,21s system 228% cpu 43,909 total
Patched (ui_speedup branch)
cargo test // prime cache
cargo --color=always test 97,51s user 32,02s system 288% cpu 44,905 total
cargo --color=always test 99,19s user 31,91s system 276% cpu 47,436 total
cargo --color=always test 98,47s user 31,84s system 284% cpu 45,744 total
cargo --color=always nextest run 102,18s user 30,80s system 350% cpu 37,902 total
cargo --color=always nextest run 99,75s user 29,86s system 350% cpu 36,935 total
cargo --color=always nextest run 100,36s user 29,93s system 351% cpu 37,061 total
```
2022-02-20 12:45:37 +00:00
|
|
|
);
|
2022-01-30 16:39:30 +00:00
|
|
|
compiletest::run_tests(&config);
|
2018-05-30 18:29:00 +00:00
|
|
|
}
|
|
|
|
|
2022-01-30 16:39:30 +00:00
|
|
|
fn run_internal_tests() {
|
2020-12-06 14:01:03 +00:00
|
|
|
// only run internal tests with the internal-tests feature
|
|
|
|
if !RUN_INTERNAL_TESTS {
|
|
|
|
return;
|
|
|
|
}
|
2022-01-30 16:39:30 +00:00
|
|
|
let config = base_config("ui-internal");
|
|
|
|
compiletest::run_tests(&config);
|
2020-12-06 14:01:03 +00:00
|
|
|
}
|
|
|
|
|
2022-01-30 16:39:30 +00:00
|
|
|
fn run_ui_toml() {
|
2020-05-28 13:45:24 +00:00
|
|
|
fn run_tests(config: &compiletest::Config, mut tests: Vec<tester::TestDescAndFn>) -> Result<bool, io::Error> {
|
|
|
|
let mut result = true;
|
|
|
|
let opts = compiletest::test_opts(config);
|
|
|
|
for dir in fs::read_dir(&config.src_base)? {
|
|
|
|
let dir = dir?;
|
|
|
|
if !dir.file_type()?.is_dir() {
|
2018-05-30 18:29:00 +00:00
|
|
|
continue;
|
|
|
|
}
|
2020-05-28 13:45:24 +00:00
|
|
|
let dir_path = dir.path();
|
2021-05-06 20:43:19 +00:00
|
|
|
let _g = VarGuard::set("CARGO_MANIFEST_DIR", &dir_path);
|
2020-05-28 13:45:24 +00:00
|
|
|
for file in fs::read_dir(&dir_path)? {
|
|
|
|
let file = file?;
|
|
|
|
let file_path = file.path();
|
|
|
|
if file.file_type()?.is_dir() {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if file_path.extension() != Some(OsStr::new("rs")) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
let paths = compiletest::common::TestPaths {
|
|
|
|
file: file_path,
|
|
|
|
base: config.src_base.clone(),
|
|
|
|
relative_dir: dir_path.file_name().unwrap().into(),
|
|
|
|
};
|
2021-04-08 15:50:13 +00:00
|
|
|
let test_name = compiletest::make_test_name(config, &paths);
|
2020-05-28 13:45:24 +00:00
|
|
|
let index = tests
|
|
|
|
.iter()
|
|
|
|
.position(|test| test.desc.name == test_name)
|
|
|
|
.expect("The test should be in there");
|
|
|
|
result &= tester::run_tests_console(&opts, vec![tests.swap_remove(index)])?;
|
2018-05-30 18:29:00 +00:00
|
|
|
}
|
2018-05-30 19:26:09 +00:00
|
|
|
}
|
2020-05-28 13:45:24 +00:00
|
|
|
Ok(result)
|
2018-05-30 19:26:09 +00:00
|
|
|
}
|
|
|
|
|
2022-01-30 16:39:30 +00:00
|
|
|
let mut config = base_config("ui-toml");
|
|
|
|
config.src_base = config.src_base.canonicalize().unwrap();
|
2020-02-01 10:04:04 +00:00
|
|
|
|
2022-01-30 16:39:30 +00:00
|
|
|
let tests = compiletest::make_tests(&config);
|
2018-05-30 19:26:09 +00:00
|
|
|
|
2022-01-30 16:39:30 +00:00
|
|
|
let res = run_tests(&config, tests);
|
2020-05-28 13:45:24 +00:00
|
|
|
match res {
|
|
|
|
Ok(true) => {},
|
|
|
|
Ok(false) => panic!("Some tests failed"),
|
|
|
|
Err(e) => {
|
|
|
|
panic!("I/O failure during tests: {:?}", e);
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-30 16:39:30 +00:00
|
|
|
fn run_ui_cargo() {
|
2020-05-28 13:45:24 +00:00
|
|
|
fn run_tests(
|
|
|
|
config: &compiletest::Config,
|
2021-02-25 10:25:22 +00:00
|
|
|
filters: &[String],
|
2020-05-28 13:45:24 +00:00
|
|
|
mut tests: Vec<tester::TestDescAndFn>,
|
|
|
|
) -> Result<bool, io::Error> {
|
|
|
|
let mut result = true;
|
|
|
|
let opts = compiletest::test_opts(config);
|
|
|
|
|
|
|
|
for dir in fs::read_dir(&config.src_base)? {
|
|
|
|
let dir = dir?;
|
|
|
|
if !dir.file_type()?.is_dir() {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Use the filter if provided
|
|
|
|
let dir_path = dir.path();
|
2021-02-25 10:25:22 +00:00
|
|
|
for filter in filters {
|
|
|
|
if !dir_path.ends_with(filter) {
|
|
|
|
continue;
|
|
|
|
}
|
2020-05-28 13:45:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for case in fs::read_dir(&dir_path)? {
|
|
|
|
let case = case?;
|
|
|
|
if !case.file_type()?.is_dir() {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
let src_path = case.path().join("src");
|
|
|
|
|
2020-06-09 14:36:01 +00:00
|
|
|
// When switching between branches, if the previous branch had a test
|
|
|
|
// that the current branch does not have, the directory is not removed
|
|
|
|
// because an ignored Cargo.lock file exists.
|
|
|
|
if !src_path.exists() {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
env::set_current_dir(&src_path)?;
|
2020-05-28 13:45:24 +00:00
|
|
|
for file in fs::read_dir(&src_path)? {
|
|
|
|
let file = file?;
|
|
|
|
if file.file_type()?.is_dir() {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Search for the main file to avoid running a test for each file in the project
|
|
|
|
let file_path = file.path();
|
|
|
|
match file_path.file_name().and_then(OsStr::to_str) {
|
|
|
|
Some("main.rs") => {},
|
|
|
|
_ => continue,
|
|
|
|
}
|
2021-05-06 20:43:19 +00:00
|
|
|
let _g = VarGuard::set("CLIPPY_CONF_DIR", case.path());
|
2020-05-28 13:45:24 +00:00
|
|
|
let paths = compiletest::common::TestPaths {
|
|
|
|
file: file_path,
|
|
|
|
base: config.src_base.clone(),
|
|
|
|
relative_dir: src_path.strip_prefix(&config.src_base).unwrap().into(),
|
|
|
|
};
|
2021-04-08 15:50:13 +00:00
|
|
|
let test_name = compiletest::make_test_name(config, &paths);
|
2020-05-28 13:45:24 +00:00
|
|
|
let index = tests
|
|
|
|
.iter()
|
|
|
|
.position(|test| test.desc.name == test_name)
|
|
|
|
.expect("The test should be in there");
|
|
|
|
result &= tester::run_tests_console(&opts, vec![tests.swap_remove(index)])?;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Ok(result)
|
|
|
|
}
|
|
|
|
|
2022-01-10 19:20:46 +00:00
|
|
|
if IS_RUSTC_TEST_SUITE {
|
2020-08-11 13:43:21 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-01-30 16:39:30 +00:00
|
|
|
let mut config = base_config("ui-cargo");
|
|
|
|
config.src_base = config.src_base.canonicalize().unwrap();
|
2020-05-28 13:45:24 +00:00
|
|
|
|
2022-01-30 16:39:30 +00:00
|
|
|
let tests = compiletest::make_tests(&config);
|
2020-05-28 13:45:24 +00:00
|
|
|
|
|
|
|
let current_dir = env::current_dir().unwrap();
|
2022-01-30 16:39:30 +00:00
|
|
|
let res = run_tests(&config, &config.filters, tests);
|
2020-05-28 13:45:24 +00:00
|
|
|
env::set_current_dir(current_dir).unwrap();
|
|
|
|
|
2018-05-30 19:26:09 +00:00
|
|
|
match res {
|
2018-06-07 17:16:50 +00:00
|
|
|
Ok(true) => {},
|
2018-05-30 19:26:09 +00:00
|
|
|
Ok(false) => panic!("Some tests failed"),
|
|
|
|
Err(e) => {
|
2020-05-28 13:45:24 +00:00
|
|
|
panic!("I/O failure during tests: {:?}", e);
|
2018-06-07 17:16:50 +00:00
|
|
|
},
|
2018-05-30 18:29:00 +00:00
|
|
|
}
|
2015-04-13 17:58:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn compile_test() {
|
2022-01-12 19:27:51 +00:00
|
|
|
set_var("CLIPPY_DISABLE_DOCS_LINKS", "true");
|
2022-01-30 16:39:30 +00:00
|
|
|
run_ui();
|
|
|
|
run_ui_toml();
|
|
|
|
run_ui_cargo();
|
|
|
|
run_internal_tests();
|
2015-04-13 17:58:18 +00:00
|
|
|
}
|
2021-05-06 20:43:19 +00:00
|
|
|
|
|
|
|
/// Restores an env var on drop
|
|
|
|
#[must_use]
|
|
|
|
struct VarGuard {
|
|
|
|
key: &'static str,
|
|
|
|
value: Option<OsString>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl VarGuard {
|
|
|
|
fn set(key: &'static str, val: impl AsRef<OsStr>) -> Self {
|
|
|
|
let value = var_os(key);
|
|
|
|
set_var(key, val);
|
|
|
|
Self { key, value }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Drop for VarGuard {
|
|
|
|
fn drop(&mut self) {
|
|
|
|
match self.value.as_deref() {
|
|
|
|
None => remove_var(self.key),
|
|
|
|
Some(value) => set_var(self.key, value),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|