]> git.lizzy.rs Git - rust.git/commitdiff
Remove __CLIPPY_INTERNAL_TESTS env var
authorCameron Steffen <cam.steffen94@gmail.com>
Wed, 12 Jan 2022 19:27:51 +0000 (13:27 -0600)
committerCameron Steffen <cam.steffen94@gmail.com>
Mon, 17 Jan 2022 18:37:05 +0000 (12:37 -0600)
clippy_dev/src/lint.rs
src/driver.rs
tests/compile-test.rs

index dfd16f7105438c3b8df74cf26b875e8491509675..b8287980a4bacea5df7cadbe2a50621eac7e6131 100644 (file)
@@ -7,7 +7,6 @@ pub fn run(filename: &str) {
         .args(["-Z", "no-codegen"])
         .args(["--edition", "2021"])
         .arg(filename)
-        .env("__CLIPPY_INTERNAL_TESTS", "true")
         .status()
         .expect("failed to run cargo")
         .code();
index a8aa3a76abc6c04a2bc1ec508af74ba946c96c45..8f8f1140a3da62e86f030a16f10abacaccb9d6df 100644 (file)
@@ -331,11 +331,10 @@ pub fn main() {
         // - IF Clippy is run on the main crate, not on deps (`!cap_lints_allow`) THEN
         //    - IF `--no-deps` is not set (`!no_deps`) OR
         //    - IF `--no-deps` is set and Clippy is run on the specified primary package
-        let clippy_tests_set = env::var("__CLIPPY_INTERNAL_TESTS").map_or(false, |val| val == "true");
         let cap_lints_allow = arg_value(&orig_args, "--cap-lints", |val| val == "allow").is_some();
         let in_primary_package = env::var("CARGO_PRIMARY_PACKAGE").is_ok();
 
-        let clippy_enabled = clippy_tests_set || (!cap_lints_allow && (!no_deps || in_primary_package));
+        let clippy_enabled = !cap_lints_allow && (!no_deps || in_primary_package);
         if clippy_enabled {
             args.extend(clippy_args);
         }
index 531890c863f5efeda3642e73a67029ea1e879f63..6505028db9fadc1f5e75e62e468bcde1d805d737 100644 (file)
@@ -328,15 +328,9 @@ fn run_tests(
     }
 }
 
-fn prepare_env() {
-    set_var("CLIPPY_DISABLE_DOCS_LINKS", "true");
-    set_var("__CLIPPY_INTERNAL_TESTS", "true");
-    //set_var("RUST_BACKTRACE", "0");
-}
-
 #[test]
 fn compile_test() {
-    prepare_env();
+    set_var("CLIPPY_DISABLE_DOCS_LINKS", "true");
     let mut config = default_config();
     run_ui(&mut config);
     run_ui_test(&mut config);