Skip to content

Commit

Permalink
Rename success to normal and notcovered to incomplete in colis command
Browse files Browse the repository at this point in the history
  • Loading branch information
benozol committed Feb 19, 2020
1 parent 5a758ae commit 760c533
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/colis.ml
Original file line number Diff line number Diff line change
Expand Up @@ -244,16 +244,16 @@ let print_symbolic_states ~initials (normals, errors, failures) =
printf "* Initial states@\n";
List.iter (print_symbolic_state_with_ctr "initial" (ref 1) Format.std_formatter) initials;
if normals <> [] then begin
printf "* Success states@\n";
List.iter (print_symbolic_state_with_ctr "success" (ref 1) Format.std_formatter) normals;
printf "* Normal states@\n";
List.iter (print_symbolic_state_with_ctr "normal" (ref 1) Format.std_formatter) normals;
end;
if errors <> [] then begin
printf "* Error states@\n";
List.iter (print_symbolic_state_with_ctr "error" (ref 1) Format.std_formatter) errors;
end;
if failures <> [] then begin
printf "* Incomplete symbolic execution@\n";
List.iter (print_symbolic_state_with_ctr "notcovered" (ref 1) Format.std_formatter) failures;
List.iter (print_symbolic_state_with_ctr "incomplete" (ref 1) Format.std_formatter) failures;
end;
printf "* Summary@\n@\n";
printf "- Success cases: %d@\n" (List.length normals);
Expand Down

0 comments on commit 760c533

Please sign in to comment.