.. | ||
testdata | ||
__init__.py | ||
Android.mk | ||
arc_summary.py | ||
arc_summary_test.py | ||
block_summary.py | ||
coverage_report.py | ||
coverage_report_test.py | ||
coverage_utils.py | ||
file_summary.py | ||
function_summary.py | ||
function_summary_test.py | ||
gcda_parser.py | ||
gcda_parser_test.py | ||
gcno_parser.py | ||
gcno_parser_test.py | ||
parser.py | ||
parser_test.py | ||
README.md |
To run from another Python module
Import the CoverageReport module by including the line:
from vts.utils.python.coverage import CoverageReport
Run the code by calling the parse function as follows: html_report = CoverageReport.GenerateCoverageReport(src_file_name, src_file_content, gcov_file_content, gcda_file_content)
Args: src_file_name: string, the source file name. src_file_content: string, the C/C++ source file content. gcov_file_content: string, the raw gcov binary file content. gcda_file_content: string, the raw gcda binary file content.
Returns: the coverage HTML produced for 'src_file_name'.