aboutsummaryrefslogtreecommitdiffstats
path: root/src/verit
diff options
context:
space:
mode:
authorChantal Keller <Chantal.Keller@inria.fr>2020-03-31 20:35:00 +0200
committerChantal Keller <Chantal.Keller@inria.fr>2020-03-31 20:35:00 +0200
commit632b7b11b25f78461872f50621b325321678810c (patch)
treec2b9e92ffe26978cfe68dce45f24413de1aa0ace /src/verit
parent20831b39a73ebd38336f19ad4ddb4d6b1078d60d (diff)
parent80a54a0e1974729d4756d2cc8483a2548c8dd2d0 (diff)
downloadsmtcoq-632b7b11b25f78461872f50621b325321678810c.tar.gz
smtcoq-632b7b11b25f78461872f50621b325321678810c.zip
Merge branch 'master' of github.com:smtcoq/smtcoq into coq-8.10
Diffstat (limited to 'src/verit')
-rw-r--r--src/verit/verit.ml13
1 files changed, 10 insertions, 3 deletions
diff --git a/src/verit/verit.ml b/src/verit/verit.ml
index 17a230f..39f60c0 100644
--- a/src/verit/verit.ml
+++ b/src/verit/verit.ml
@@ -185,20 +185,27 @@ let call_verit _ rt ro ra' rf' first lsmt =
let win = open_in wname in
- let raise_warnings () =
+ let raise_warnings_errors () =
try
while true do
let l = input_line win in
+ let n = String.length l in
if l = "warning : proof_done: status is still open" then
raise Unknown
+ else if l = "Invalid memory reference" then
+ Structures.warning "verit-warning" ("veriT outputted the warning: " ^ l)
+ else if n >= 7 && String.sub l 0 7 = "warning" then
+ Structures.warning "verit-warning" ("veriT outputted the warning: " ^ (String.sub l 7 (n-7)))
+ else if n >= 8 && String.sub l 0 8 = "error : " then
+ Structures.error ("veriT failed with the error: " ^ (String.sub l 8 (n-8)))
else
- Structures.warning "verit-warning" ("Verit.call_verit: command " ^ command ^ " outputs the warning: " ^ l);
+ Structures.error ("veriT failed with the error: " ^ l)
done
with End_of_file -> () in
try
if exit_code <> 0 then Structures.warning "verit-non-zero-exit-code" ("Verit.call_verit: command " ^ command ^ " exited with code " ^ string_of_int exit_code);
- raise_warnings ();
+ raise_warnings_errors ();
let res = import_trace ra' rf' logfilename (Some first) lsmt in
close_in win; Sys.remove wname; res
with x -> close_in win; Sys.remove wname;