Home | History | Annotate | Download | only in tools

Lines Matching refs:report

7 """Parse an LLVM coverage report to generate useable results."""
57 def _get_per_file_per_line_coverage(report):
72 lines = report.splitlines()
152 """Summarize the full line-by-line coverage report by file."""
170 """Generate useful data from a coverage report."""
173 parser.add_argument('--report', help='input file; an llvm coverage report.',
189 with open(args.report) as f:
190 report = f.read()
192 line_by_line = _get_per_file_per_line_coverage(report)