X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2Fmathql_test%2Fmqgtop.ml;h=b65c805579b0be6541db255084c2604eb67aa0d0;hb=4be3764541d8caa00737a686156907e7f2ae720c;hp=edf714b1e6a1ecb0e6f2216079182d68d84a6617;hpb=36d9dada5eb3894d96c807781e1056b73a1c0a79;p=helm.git diff --git a/helm/mathql_test/mqgtop.ml b/helm/mathql_test/mqgtop.ml index edf714b1e..b65c80557 100644 --- a/helm/mathql_test/mqgtop.ml +++ b/helm/mathql_test/mqgtop.ml @@ -73,14 +73,14 @@ let issue handle q = let out = output_string och in if ! query_num = 1 then out (time () ^ nl); out ("Query: " ^ string_of_int ! query_num ^ nl); - U.text_of_query out q nl; + U.text_of_query out nl q; out ("Result: " ^ nl); - U.text_of_result out r nl; + U.text_of_result out nl r; close_out och in - if ! show_queries then U.text_of_query (output_string stdout) q nl; + if ! show_queries then U.text_of_query (output_string stdout) nl q; let r = I.execute handle q in - U.text_of_result (output_string stdout) r nl; + U.text_of_result (output_string stdout) nl r; if ! log_file <> "" then log q r; incr query_num; flush stdout @@ -325,8 +325,8 @@ let rec parse = function let _ = let t = U.start_time () in - Logger.log_callback := - (Logger.log_to_html + CicLogger.log_callback := + (CicLogger.log_to_html ~print_and_flush:(fun s -> print_string s; flush stdout)) ; parse (List.tl (Array.to_list Sys.argv)); prerr_endline ("mqgtop: done in " ^ (U.stop_time t));