From cd925f01404454db06cb7aa89a5fa407f175f09f Mon Sep 17 00:00:00 2001 From: Alex Butler Date: Tue, 29 May 2018 00:38:47 +0100 Subject: [PATCH] Add mercy for devs that run `cargo test` without building --- src/test/mod.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/test/mod.rs b/src/test/mod.rs index d5c0533fde6..3ac8caae291 100644 --- a/src/test/mod.rs +++ b/src/test/mod.rs @@ -900,6 +900,10 @@ fn rustfmt() -> PathBuf { me.pop(); // chop of the test name me.pop(); // chop off `deps` me.push("rustfmt"); + assert!( + me.is_file() || me.with_extension("exe").is_file(), + "no rustfmt bin, try running `cargo build` before testing" + ); return me; } -- 2.44.0