tuned messages;
authorwenzelm
Sun, 20 Sep 2020 11:42:48 +0200
changeset 72273 b8f32e830e95
parent 72272 6931ab4f1a47
child 72274 a1098a183f4a
tuned messages;
src/HOL/Library/code_test.ML
--- a/src/HOL/Library/code_test.ML	Sun Sep 20 11:32:58 2020 +0200
+++ b/src/HOL/Library/code_test.ML	Sun Sep 20 11:42:48 2020 +0200
@@ -120,7 +120,7 @@
 
 fun parse_result target out =
   (case split_first_last start_markerN end_markerN out of
-    NONE => error ("Evaluation failed for " ^ target ^ "!\nBash output:\n" ^ out)
+    NONE => error ("Evaluation failed for " ^ target ^ "!\nCompiler output:\n" ^ out)
   | SOME (_, middle, _) => middle |> trim_split_lines |> map parse_line)
 
 
@@ -314,7 +314,7 @@
         val _ =
           if res = 0 then ()
           else error ("Evaluation for " ^ compilerN ^ " terminated with error code " ^
-            string_of_int res ^ "\nBash output:\n" ^ out)
+            string_of_int res ^ "\nCompiler output:\n" ^ out)
       in out end
   in run end