From b23ed6ed4c53a6d010238643c443da6db3931a87 Mon Sep 17 00:00:00 2001 From: Joe Wilm Date: Mon, 23 Jan 2017 08:06:09 -0800 Subject: [PATCH] Capture test output by default The `rustc-test` crate has this feature disabled by default causing all of the test `println!` output to be displayed. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 02b0e95f..4b0d75be 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -49,7 +49,7 @@ git = "https://github.com/jwilm/glutin" rev = "af7fe340bd4a2af53ea521defcb4f377cdc588cf" [dev-dependencies] -rustc-test = "0.1" +rustc-test = { version = "0.1", features = ["capture"] } [profile.release] lto = true