We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cdde22c + 41d3df7 commit 66afff9Copy full SHA for 66afff9
tests/dogfood.rs
@@ -4,14 +4,16 @@ fn dogfood() {
4
return;
5
}
6
let root_dir = std::env::current_dir().unwrap();
7
- for d in &[".", "clippy_lints"] {
+ for d in &[".", "clippy_lints", "rustc_tools_util", "clippy_dev"] {
8
std::env::set_current_dir(root_dir.join(d)).unwrap();
9
let output = std::process::Command::new("cargo")
10
.arg("run")
11
.arg("--bin")
12
.arg("cargo-clippy")
13
+ .arg("--all-features")
14
.arg("--manifest-path")
15
.arg(root_dir.join("Cargo.toml"))
16
+ .args(&["--", "-W clippy::internal"])
17
.env("CLIPPY_DOGFOOD", "true")
18
.output()
19
.unwrap();
0 commit comments