From 6a24abbbc552ac94e8b18cbc1ef38414d192c60f Mon Sep 17 00:00:00 2001 From: ashtneoi Date: Mon, 13 Aug 2018 23:49:21 -0700 Subject: [PATCH] Fix compiletest JSON error message --- src/tools/compiletest/src/json.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tools/compiletest/src/json.rs b/src/tools/compiletest/src/json.rs index 201a661726e..58220ba992c 100644 --- a/src/tools/compiletest/src/json.rs +++ b/src/tools/compiletest/src/json.rs @@ -82,7 +82,7 @@ pub fn extract_rendered(output: &str, proc_res: &ProcRes) -> String { Err(error) => { proc_res.fatal(Some(&format!( "failed to decode compiler output as json: \ - `{}`\noutput: {}\nline: {}", + `{}`\nline: {}\noutput: {}", error, line, output ))); } @@ -114,7 +114,7 @@ fn parse_line(file_name: &str, line: &str, output: &str, proc_res: &ProcRes) -> Err(error) => { proc_res.fatal(Some(&format!( "failed to decode compiler output as json: \ - `{}`\noutput: {}\nline: {}", + `{}`\nline: {}\noutput: {}", error, line, output ))); }