about summary refs log tree commit diff
path: root/tests
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2022-10-22 18:42:12 +0000
committerbors <bors@rust-lang.org>2022-10-22 18:42:12 +0000
commitb62ef608d751925398ef33d1946acde2eab90d49 (patch)
treedcdb2ddf93d59c7afb842d0af0729209a3b1d681 /tests
parentb72e451310d65ddf69441a641e2ebd6886c813b8 (diff)
parentbbee1c9d1f53fc8614fa2dc2737329555bc01b26 (diff)
downloadrust-b62ef608d751925398ef33d1946acde2eab90d49.tar.gz
rust-b62ef608d751925398ef33d1946acde2eab90d49.zip
Auto merge of #9691 - smoelius:lint-lintcheck, r=llogiq
Add `lintcheck` to packages linted by `dogfood` test

Currently, `lintcheck` is not checked by the `dogfood` test. I assume that is not intentional. If it is intentional, then this PR can be ignored.

changelog: Add `lintcheck` to packages linted by `dogfood` test
Diffstat (limited to 'tests')
-rw-r--r--tests/dogfood.rs9
1 files changed, 8 insertions, 1 deletions
diff --git a/tests/dogfood.rs b/tests/dogfood.rs
index 961525bbd91..6d0022f7a5c 100644
--- a/tests/dogfood.rs
+++ b/tests/dogfood.rs
@@ -20,7 +20,14 @@ fn dogfood_clippy() {
     }
 
     // "" is the root package
-    for package in &["", "clippy_dev", "clippy_lints", "clippy_utils", "rustc_tools_util"] {
+    for package in &[
+        "",
+        "clippy_dev",
+        "clippy_lints",
+        "clippy_utils",
+        "lintcheck",
+        "rustc_tools_util",
+    ] {
         run_clippy_for_package(package, &["-D", "clippy::all", "-D", "clippy::pedantic"]);
     }
 }