Lines Matching full:coverage

20 #      other automake headers and files for code coverage.
26 # Suffix for the code coverage report "bundle".
31 # Suffix for the lcov "info" file inside the code coverage report bundle.
60 # generate-coverage-report <directory>
62 # Capture, using lcov, a coverage report from the specified directory 'directory'
65 # <directory> - The directory from which lcov should search for coverage data (*.gcno & *.gcda)
67 # - create baseline coverage data file (base.info) with '-i|--initial' option
68 # - create test coverage data file (test.info)
69 # - combine baseline and test coverage data to create the final "info" file
71 # Then, on success, generate an HTML-based coverage report using genhtml.
73 define generate-coverage-report
78 endef # generate-coverage-report
81 # generate-coverage-report-with-filter <directory> <remove_filter>
83 # Capture, using lcov, a coverage report from the specified directory 'directory' and a filter 'rem…
86 # <directory> - The directory from which lcov should search for coverage data (*.gcno & *.gc…
91 # - create baseline coverage data file (base.info) with '-i|--initial' option
92 # - create test coverage data file (test.info)
93 # - combine baseline and test coverage data to create the final "info" file
94 # - remove particular coverage data specifiled by the remove_filter (no change if remove_filter i…
96 # Then, on success, generate an HTML-based coverage report using genhtml.
98 define generate-coverage-report-with-filter
104 endef # generate-coverage-report-with-filter