From 6fc9d90b60f613fb272b1ea3d8c87e86fcc19332 Mon Sep 17 00:00:00 2001 From: Michael Wright Date: Tue, 3 Apr 2018 06:22:42 +0200 Subject: [PATCH] Re-enable dogfood test on Windows This should work now that dogfood uses a separate output directory. --- tests/dogfood.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/dogfood.rs b/tests/dogfood.rs index a2d4da9a1ca4..a586d89ca4f9 100644 --- a/tests/dogfood.rs +++ b/tests/dogfood.rs @@ -3,9 +3,6 @@ fn dogfood() { if option_env!("RUSTC_TEST_SUITE").is_some() { return; } - if cfg!(windows) { - return; - } let root_dir = std::env::current_dir().unwrap(); for d in &[".", "clippy_lints"] { std::env::set_current_dir(root_dir.join(d)).unwrap();