ignore error messages produced by ATPs
authorboehmes
Fri, 23 Oct 2009 14:22:36 +0200
changeset 33082 ccefc096abc9
parent 33081 fe29679cabc2
child 33083 1fad3160d873
ignore error messages produced by ATPs
src/HOL/Tools/ATP_Manager/atp_wrapper.ML
--- a/src/HOL/Tools/ATP_Manager/atp_wrapper.ML	Fri Oct 23 10:11:56 2009 +0200
+++ b/src/HOL/Tools/ATP_Manager/atp_wrapper.ML	Fri Oct 23 14:22:36 2009 +0200
@@ -141,7 +141,8 @@
 
     (* write out problem file and call prover *)
     fun cmd_line probfile = "TIMEFORMAT='%3U'; { time " ^ space_implode " "
-      [File.shell_path cmd, args, File.shell_path probfile] ^ " ; } 2>&1"
+      [File.shell_path cmd, args, File.shell_path probfile] ^ " 2> /dev/null" ^
+      " ; } 2>&1"
     fun split_time s =
       let
         val split = String.tokens (fn c => str c = "\n");