*)
let trust = true
+let deadline = 30
let conffile = "../../../matita/matita.conf.xml"
let _ = CicEnvironment.set_trust (fun _ -> trust);;
Printf.printf "Old: %.2f (%.2f%%)\n" !old_total (perc !new_total !old_total))
;;
+let timeout = ref false;;
+
+let _ =
+ Sys.set_signal 14 (* SIGALRM *)
+ (Sys.Signal_handle (fun _ ->
+ timeout := true;
+ raise Sys.Break))
+;;
+
let urifname =
try
Sys.argv.(1)
flush stdout;
let uri = UriManager.uri_of_string uri in
let before = Unix.gettimeofday () in
+ ignore (Unix.alarm deadline);
ignore (CicTypeChecker.typecheck uri);
+ ignore (Unix.alarm 0);
let after = Unix.gettimeofday () in
let diff = after -. before in
new_total := !new_total +. diff;
begin
Printf.printf "\e[0;31mSKIPPED\e[0m\n";
flush stdout;
- Printf.eprintf "\e[0;31mContinue with next URI? [y/_]\e[0m";
- flush stderr;
+ if not !timeout then
+ begin
+ Printf.eprintf "\e[0;31mContinue with next URI? [y/_]\e[0m";
+ flush stderr;
+ end;
end;
- (match input_line stdin with
- "y" -> ()
- | _ -> raise Done)
+ if not !timeout then
+ (match input_line stdin with
+ "y" -> ()
+ | _ -> raise Done)
+ else
+ timeout := false
with
Sys.Break -> skip_break false
in
skip_break true
+ | CicEnvironment.CircularDependency _ ->
+ Printf.printf "\e[0;31mCIRCULARDEP\e[0m\n"
| exn ->
Printf.printf "\e[0;31mFAIL\e[0m\n";
flush stdout;