blob: 4616aadf259b6dda6bb604ed7e8aa812be42cbf0 (
plain)
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
|
open CfimOfJson
open Logging
open Print
module T = Types
module A = CfimAst
module I = Interpreter
type test = Test [@@deriving show]
let _ = show_test Test
(* This is necessary to have a backtrace when raising exceptions - for some
* reason, the -g option doesn't work *)
let () = Printexc.record_backtrace true
let usage = Printf.sprintf {|Aenaes: verification of Rust programs by translation
Usage: %s [OPTIONS] FILE
|} Sys.argv.(0);;
let () =
let spec = [
] in
let spec = Arg.align spec in
let filename = ref "" in
let fail () = print_string usage; exit 1 in
Arg.parse spec (fun f ->
if not (Filename.check_suffix f ".cfim") then begin
print_string "Unrecognized file extension";
fail ()
end else if not (Sys.file_exists f) then begin
print_string "File not found";
fail ()
end else
filename := f
) usage;
if !filename = "" then begin
print_string usage;
exit 1
end;
let json = Yojson.Basic.from_file !filename in
match cfim_module_of_json json with
| Error s -> log#error "error: %s\n" s
| Ok m ->
(* Print the module *)
log#ldebug (lazy ("\n" ^ Print.Module.module_to_string m ^ "\n"));
(* Test the unit functions *)
I.Test.test_all_unit_functions m.types m.functions
|