Don't change current working directory of cargo tests

This commit is contained in:
Wayne Warren 2018-11-30 12:54:47 -06:00
parent 87d517df5d
commit 0442bb9ce0
1 changed files with 3 additions and 7 deletions

View File

@ -8,11 +8,6 @@
// except according to those terms.
#[test]
fn dogfood_runner() {
dogfood();
dogfood_tests();
}
fn dogfood() {
if option_env!("RUSTC_TEST_SUITE").is_some() || cfg!(windows) {
return;
@ -23,8 +18,8 @@ fn dogfood() {
.join(env!("PROFILE"))
.join("cargo-clippy");
std::env::set_current_dir(root_dir).unwrap();
let output = std::process::Command::new(clippy_cmd)
.current_dir(root_dir)
.env("CLIPPY_DOGFOOD", "1")
.arg("clippy")
.arg("--all-targets")
@ -42,6 +37,7 @@ fn dogfood() {
assert!(output.status.success());
}
#[test]
fn dogfood_tests() {
if option_env!("RUSTC_TEST_SUITE").is_some() || cfg!(windows) {
return;
@ -60,8 +56,8 @@ fn dogfood_tests() {
"clippy_dev",
"rustc_tools_util",
] {
std::env::set_current_dir(root_dir.join(d)).unwrap();
let output = std::process::Command::new(&clippy_cmd)
.current_dir(root_dir.join(d))
.env("CLIPPY_DOGFOOD", "1")
.arg("clippy")
.arg("--")