aboutsummaryrefslogtreecommitdiffstats
path: root/src/verit/verit.ml
diff options
context:
space:
mode:
authorChantal Keller <Chantal.Keller@lri.fr>2020-07-06 12:40:48 +0200
committerChantal Keller <Chantal.Keller@lri.fr>2020-07-06 12:40:48 +0200
commit52621f58edcabc36e7d1cd10d9b4da8be1a08649 (patch)
treede5831e7b1b0fb79fe459a819bbe2590e14a1682 /src/verit/verit.ml
parentea73755e6e1b7efea8db79b9fc0cf456ed5c640f (diff)
parentd7a33ad9b479317701eba7c787744599de134f78 (diff)
downloadsmtcoq-52621f58edcabc36e7d1cd10d9b4da8be1a08649.tar.gz
smtcoq-52621f58edcabc36e7d1cd10d9b4da8be1a08649.zip
Merge branch 'coq-8.10' of github.com:smtcoq/smtcoq into coq-8.10
Diffstat (limited to 'src/verit/verit.ml')
-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;