From 320119ce96d27b5731d2d48092deb500785f553f Mon Sep 17 00:00:00 2001 From: liv Date: Fri, 25 Jan 2019 15:11:23 +0100 Subject: add "--color always" to the other rustc commands --- src/verify.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/verify.rs') diff --git a/src/verify.rs b/src/verify.rs index 9aa3a4b..eb609ab 100644 --- a/src/verify.rs +++ b/src/verify.rs @@ -84,7 +84,7 @@ pub fn test(filename: &str) -> Result<(), ()> { bar.set_message(format!("Testing {}...", filename).as_str()); bar.enable_steady_tick(100); let testcmd = Command::new("rustc") - .args(&["--test", filename, "-o", "temp"]) + .args(&["--test", filename, "-o", "temp", "--color", "always"]) .output() .expect("fail"); bar.finish_and_clear(); -- cgit v1.2.3