From 984e15a0c0bc87b07050bc6f9b7036126cb577ea Mon Sep 17 00:00:00 2001 From: mcarton Date: Sat, 22 Oct 2016 16:16:55 +0200 Subject: [PATCH] Forbid default warnings in dogfood --- tests/dogfood.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/dogfood.rs b/tests/dogfood.rs index 540040a5ed5a..83b2acf7d815 100644 --- a/tests/dogfood.rs +++ b/tests/dogfood.rs @@ -24,7 +24,7 @@ fn dogfood() { let mut s = String::new(); s.push_str(" -L target/debug/"); s.push_str(" -L target/debug/deps"); - s.push_str(" -Zextra-plugins=clippy -Ltarget_recur/debug -Dclippy_pedantic -Dclippy -Dclippy_internal"); + s.push_str(" -Zextra-plugins=clippy -Ltarget_recur/debug -Dwarnings -Dclippy_pedantic -Dclippy -Dclippy_internal"); config.target_rustcflags = Some(s); if let Ok(name) = var("TESTNAME") { config.filter = Some(name.to_owned())