forked from coccinelle/coccinelle
-
Notifications
You must be signed in to change notification settings - Fork 1
/
testing.mli
65 lines (49 loc) · 2.32 KB
/
testing.mli
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
open Common
(*****************************************************************************)
(* work with tests/ *)
(*****************************************************************************)
val testone : string (*test*) -> bool (*compare_expected*) -> unit
val testall : unit -> unit
(*****************************************************************************)
(* works with tests-big/. The .res, .ok, .spatch_ok, .failed, .var *)
(*****************************************************************************)
val test_okfailed : filename (*cocci*) -> filename (*c*) list -> unit
val test_regression_okfailed : unit -> unit
(*****************************************************************************)
(* the parameter is the result of Cocci.full_engine *)
(*****************************************************************************)
val compare_with_expected : (filename * filename option) list -> unit
(*****************************************************************************)
(* to test/debug the coccinelle subsystems *)
(*****************************************************************************)
(* pad:
* I moved the parsing_c/ subsystem testing in parsing_c/test_parsing_c.ml
* as I need it for other projects too.
*)
val test_parse_cocci : filename -> unit
(*****************************************************************************)
(* to be called by ocaml toplevel, to test. *)
(*****************************************************************************)
val sp_of_file :
filename (* coccifile *) -> filename option (* isofile *) ->
Ast_cocci.rule list * Ast_cocci.meta_name list list list *
Ast_cocci.meta_name list list list *
Ast_cocci.meta_name list list list * Ast_cocci.meta_name list list list *
string list list *
string option
(* TODO: Remove
val rule_elem_of_string : string -> filename option -> Ast_cocci.rule_elem
*)
(*
val flows_of_ast : Ast_c.program -> Control_flow_c.cflow list
val print_flow : Control_flow_c.cflow -> unit
val ctls_of_ast :
Ast_cocci.rule list ->
Ast_cocci.meta_name list list list ->
(Lib_engine.ctlcocci *
((Lib_engine.predicate * Ast_cocci.meta_name Ast_ctl.modif)
list list))
list list
val one_flow : Control_flow_c.cflow list -> Control_flow_c.cflow
val one_ctl : Lib_engine.ctlcocci list list -> Lib_engine.ctlcocci
*)