Lines Matching full:lcov
6 """Generates a coverage report for given binaries using llvm-gcov & lcov.
9 Requires lcov 1.11 or later.
72 self.lcov = self.determine_proper_lcov()
73 if not self.lcov:
74 print 'Unable to find appropriate lcov to use'
134 """Wrapper to call lcov that adds appropriate arguments as needed."""
136 self.lcov, '--config-file',
186 # lcov and llvm-cov
212 """Find a version of lcov that will work with the script."""
213 version_regex = re.compile('.*LCOV version ([\d]+)\.([\d]+).*')
214 return self.find_acceptable_binary('lcov', version_regex, 1, 11)
334 'llvm-cov & lcov.\n\n'
336 'Requires lcov 1.11 or later.\n\n'