1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
|
(******************************************************************************)
(* OASIS: architecture for building OCaml libraries and applications *)
(* *)
(* Copyright (C) 2011-2013, Sylvain Le Gall *)
(* Copyright (C) 2008-2011, OCamlCore SARL *)
(* *)
(* This library is free software; you can redistribute it and/or modify it *)
(* under the terms of the GNU Lesser General Public License as published by *)
(* the Free Software Foundation; either version 2.1 of the License, or (at *)
(* your option) any later version, with the OCaml static compilation *)
(* exception. *)
(* *)
(* This library is distributed in the hope that it will be useful, but *)
(* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY *)
(* or FITNESS FOR A PARTICULAR PURPOSE. See the file COPYING for more *)
(* details. *)
(* *)
(* You should have received a copy of the GNU Lesser General Public License *)
(* along with this library; if not, write to the Free Software Foundation, *)
(* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA *)
(******************************************************************************)
(** Run tests for OASIS
@author Sylvain Le Gall
*)
open OUnit2
open TestCommon
let extract_timings () =
let log_fn j =
Filename.concat OUnitUtils.buildir
(Printf.sprintf "oUnit-OASIS-%s.log" (OUnitUtils.shardf j))
in
let j = ref 0 in
let timings = Hashtbl.create 13 in
let () = ignore "(*(*" in
let rex = Pcre.regexp "Time spent in '(.*)': (.*)s" in
let total_time = ref 0.0 in
let () =
while Sys.file_exists (log_fn !j) do
let chn = open_in (log_fn !j) in
incr j;
try
while true do
let ln = input_line chn in
try
let substr = Pcre.exec ~rex ln in
let name = Pcre.get_substring substr 1 in
let time = float_of_string (Pcre.get_substring substr 2) in
let count', time' =
try
Hashtbl.find timings name
with Not_found ->
0, 0.0
in
total_time := !total_time +. time;
Hashtbl.replace timings name (count' + 1, time' +. time)
with Not_found ->
()
done
with End_of_file ->
close_in chn
done
in
let output_dir = "../dist" in
let output_fn = Filename.concat output_dir "timings.csv" in
if Sys.file_exists output_dir && Sys.is_directory output_dir then begin
let chn = open_out output_fn in
Printf.fprintf chn "name,time,count\n";
Hashtbl.iter
(fun name (count, time) ->
Printf.fprintf chn "%S,%f,%d\n" name time count)
timings;
close_out chn
end;
try
ignore(Sys.getenv "TIMINGS");
Hashtbl.iter
(fun name (count, time) ->
Printf.printf
"Time spent in '%s':\n % 7.2fs (% 3d time, % 6.2f%%, %5.2fs/call)\n"
name time count ((time /. !total_time) *. 100.0)
(time /. (float_of_int count)))
timings;
Printf.printf "Total time accounted: %fs\n" !total_time
with Not_found ->
()
let () =
let () =
OASISBuiltinPlugins.init ()
in
run_test_tt_main
~exit
("OASIS">:::
[
TestPropList.tests;
TestOASIS.tests;
TestVersion.tests;
TestFileTemplate.tests;
TestBasic.tests;
TestFull.tests;
TestMETA.tests;
TestLog.tests;
TestLicense.tests;
TestValues.tests;
TestQuery.tests;
TestQuickstart.tests;
TestDevFiles.tests;
TestOCamlbuild.tests;
TestSelfCompile.tests;
TestStdFiles.tests;
TestOASISText.tests;
TestOASISString.tests;
]);
extract_timings ()
|