2020-02-08 23:00:49 -06:00
|
|
|
// Dogfood cannot run on Windows
|
|
|
|
#![cfg(not(windows))]
|
2020-10-09 05:45:29 -05:00
|
|
|
#![feature(once_cell)]
|
2020-02-08 23:00:49 -06:00
|
|
|
|
2020-10-09 05:45:29 -05:00
|
|
|
use std::lazy::SyncLazy;
|
2020-02-01 11:00:48 -06:00
|
|
|
use std::path::PathBuf;
|
|
|
|
use std::process::Command;
|
|
|
|
|
|
|
|
mod cargo;
|
|
|
|
|
2020-10-09 05:45:29 -05:00
|
|
|
static CLIPPY_PATH: SyncLazy<PathBuf> = SyncLazy::new(|| cargo::TARGET_LIB.join("cargo-clippy"));
|
2020-02-01 11:00:48 -06:00
|
|
|
|
2017-12-15 03:02:39 -06:00
|
|
|
#[test]
|
2019-09-11 13:52:36 -05:00
|
|
|
fn dogfood_clippy() {
|
|
|
|
// run clippy on itself and fail the test if lint warnings are reported
|
2020-02-08 23:00:49 -06:00
|
|
|
if cargo::is_rustc_test_suite() {
|
2018-01-18 15:02:58 -06:00
|
|
|
return;
|
|
|
|
}
|
2020-02-01 11:00:48 -06:00
|
|
|
let root_dir = PathBuf::from(env!("CARGO_MANIFEST_DIR"));
|
2018-11-21 09:14:42 -06:00
|
|
|
|
2020-12-06 08:01:03 -06:00
|
|
|
let mut command = Command::new(&*CLIPPY_PATH);
|
|
|
|
command
|
2018-11-30 12:54:47 -06:00
|
|
|
.current_dir(root_dir)
|
2018-11-24 15:24:13 -06:00
|
|
|
.env("CLIPPY_DOGFOOD", "1")
|
2019-09-06 12:35:20 -05:00
|
|
|
.env("CARGO_INCREMENTAL", "0")
|
2019-04-30 20:29:25 -05:00
|
|
|
.arg("clippy-preview")
|
2018-11-21 09:14:42 -06:00
|
|
|
.arg("--all-targets")
|
|
|
|
.arg("--all-features")
|
|
|
|
.arg("--")
|
|
|
|
.args(&["-D", "clippy::all"])
|
|
|
|
.args(&["-D", "clippy::pedantic"])
|
2020-12-06 08:01:03 -06:00
|
|
|
.arg("-Cdebuginfo=0"); // disable debuginfo to generate less data in the target dir
|
|
|
|
|
|
|
|
// internal lints only exist if we build with the internal-lints feature
|
|
|
|
if cfg!(feature = "internal-lints") {
|
|
|
|
command.args(&["-D", "clippy::internal"]);
|
|
|
|
}
|
|
|
|
|
|
|
|
let output = command.output().unwrap();
|
|
|
|
|
2018-11-21 09:14:42 -06:00
|
|
|
println!("status: {}", output.status);
|
|
|
|
println!("stdout: {}", String::from_utf8_lossy(&output.stdout));
|
|
|
|
println!("stderr: {}", String::from_utf8_lossy(&output.stderr));
|
|
|
|
|
|
|
|
assert!(output.status.success());
|
|
|
|
}
|
|
|
|
|
2018-11-30 12:54:47 -06:00
|
|
|
#[test]
|
2019-09-11 13:52:36 -05:00
|
|
|
fn dogfood_subprojects() {
|
|
|
|
// run clippy on remaining subprojects and fail the test if lint warnings are reported
|
2020-02-08 23:00:49 -06:00
|
|
|
if cargo::is_rustc_test_suite() {
|
2018-11-21 09:14:42 -06:00
|
|
|
return;
|
|
|
|
}
|
2020-02-01 11:00:48 -06:00
|
|
|
let root_dir = PathBuf::from(env!("CARGO_MANIFEST_DIR"));
|
2018-11-21 09:14:42 -06:00
|
|
|
|
|
|
|
for d in &[
|
|
|
|
"clippy_workspace_tests",
|
|
|
|
"clippy_workspace_tests/src",
|
|
|
|
"clippy_workspace_tests/subcrate",
|
|
|
|
"clippy_workspace_tests/subcrate/src",
|
|
|
|
"clippy_dev",
|
|
|
|
"rustc_tools_util",
|
|
|
|
] {
|
2020-02-05 09:13:55 -06:00
|
|
|
let output = Command::new(&*CLIPPY_PATH)
|
2018-11-30 12:54:47 -06:00
|
|
|
.current_dir(root_dir.join(d))
|
2018-11-24 15:24:13 -06:00
|
|
|
.env("CLIPPY_DOGFOOD", "1")
|
2019-09-06 12:35:20 -05:00
|
|
|
.env("CARGO_INCREMENTAL", "0")
|
2018-11-21 09:14:42 -06:00
|
|
|
.arg("clippy")
|
|
|
|
.arg("--")
|
|
|
|
.args(&["-D", "clippy::all"])
|
|
|
|
.args(&["-D", "clippy::pedantic"])
|
2019-09-11 13:52:36 -05:00
|
|
|
.arg("-Cdebuginfo=0") // disable debuginfo to generate less data in the target dir
|
2018-03-15 10:08:49 -05:00
|
|
|
.output()
|
|
|
|
.unwrap();
|
2017-12-15 03:02:39 -06:00
|
|
|
println!("status: {}", output.status);
|
|
|
|
println!("stdout: {}", String::from_utf8_lossy(&output.stdout));
|
|
|
|
println!("stderr: {}", String::from_utf8_lossy(&output.stderr));
|
|
|
|
|
|
|
|
assert!(output.status.success());
|
|
|
|
}
|
|
|
|
}
|