Coccinelle release-1.0.0-rc11
[bpt/coccinelle.git] / testing.mli
CommitLineData
f537ebc4 1(*
17ba0788
C
2 * Copyright 2012, INRIA
3 * Julia Lawall, Gilles Muller
4 * Copyright 2010-2011, INRIA, University of Copenhagen
f537ebc4
C
5 * Julia Lawall, Rene Rydhof Hansen, Gilles Muller, Nicolas Palix
6 * Copyright 2005-2009, Ecole des Mines de Nantes, University of Copenhagen
7 * Yoann Padioleau, Julia Lawall, Rene Rydhof Hansen, Henrik Stuart, Gilles Muller, Nicolas Palix
8 * This file is part of Coccinelle.
9 *
10 * Coccinelle is free software: you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation, according to version 2 of the License.
13 *
14 * Coccinelle is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with Coccinelle. If not, see <http://www.gnu.org/licenses/>.
21 *
22 * The authors reserve the right to distribute this or future versions of
23 * Coccinelle under other licenses.
24 *)
25
26
34e49164
C
27open Common
28
29(*****************************************************************************)
30(* work with tests/ *)
31(*****************************************************************************)
c3e37e97 32val testone : string (*prefix*) -> string (*test*) -> bool (*compare_expected*) -> unit
708f4980 33val testall : ?expected_score_file:string -> unit -> unit
34e49164
C
34
35(*****************************************************************************)
36(* works with tests-big/. The .res, .ok, .spatch_ok, .failed, .var *)
37(*****************************************************************************)
38val test_okfailed : filename (*cocci*) -> filename (*c*) list -> unit
39val test_regression_okfailed : unit -> unit
40
41
42
43(*****************************************************************************)
44(* the parameter is the result of Cocci.full_engine *)
45(*****************************************************************************)
ae4735db 46val compare_with_expected : (filename * filename option) list -> unit
34e49164
C
47
48
49(*****************************************************************************)
50(* to test/debug the coccinelle subsystems *)
51(*****************************************************************************)
52
ae4735db 53(* pad:
34e49164
C
54 * I moved the parsing_c/ subsystem testing in parsing_c/test_parsing_c.ml
55 * as I need it for other projects too.
56 *)
57
58val test_parse_cocci : filename -> unit
59
60(*****************************************************************************)
61(* to be called by ocaml toplevel, to test. *)
62(*****************************************************************************)
63
64val sp_of_file :
65 filename (* coccifile *) -> filename option (* isofile *) ->
faf9a90c
C
66 Ast_cocci.metavar list list * Ast_cocci.rule list *
67 Ast_cocci.meta_name list list list *
34e49164 68 Ast_cocci.meta_name list list list *
978fd7e5
C
69 (Ast_cocci.meta_name list list list (*used after list*) *
70 (*fresh used after list*)
71 Ast_cocci.meta_name list list list *
72 (*fresh used after list seeds*)
73 Ast_cocci.meta_name list list list) *
74 Ast_cocci.meta_name list list list *
1eddfd50
C
75 (string list option *
76 string list option *
77 Get_constants2.combine option)
34e49164
C
78
79(* TODO: Remove
80val rule_elem_of_string : string -> filename option -> Ast_cocci.rule_elem
81*)
82
83(*
84val flows_of_ast : Ast_c.program -> Control_flow_c.cflow list
85val print_flow : Control_flow_c.cflow -> unit
86
87val ctls_of_ast :
88 Ast_cocci.rule list ->
89 Ast_cocci.meta_name list list list ->
90 (Lib_engine.ctlcocci *
91 ((Lib_engine.predicate * Ast_cocci.meta_name Ast_ctl.modif)
92 list list))
93 list list
94
95
96val one_flow : Control_flow_c.cflow list -> Control_flow_c.cflow
97val one_ctl : Lib_engine.ctlcocci list list -> Lib_engine.ctlcocci
98*)