Skip to content

Commit

Permalink
Check for input .out files; bisect*.out patterns
Browse files Browse the repository at this point in the history
  • Loading branch information
aantron committed Aug 27, 2019
1 parent 5efb440 commit f63e4e3
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/report/report.ml
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,12 @@ let main () =
exit 0
end;
let data, points =
let have_out_file =
List.exists
(fun file -> Filename.check_suffix file ".out") !raw_coverage_files
in
if have_out_file then
prerr_endline " *** warning: .out files are now .coverage files";
match !raw_coverage_files with
| [] ->
prerr_endline " *** warning: no .coverage files provided";
Expand Down

0 comments on commit f63e4e3

Please sign in to comment.