Lines Matching full:targets
37 coverage results for a pre-defined set of tests and targets
111 def _GenerateReport(self, report_path, coverage_file_path, targets,
118 targets: list of CoverageTargets to use as base for code coverage
126 input_metadatas = self._GatherMetadatas(targets)
129 src_arg = self._GatherSrcs(targets)
140 def _GatherMetadatas(self, targets):
141 """Builds the emma input metadata argument from provided targets.
144 targets: list of CoverageTargets
150 for target in targets:
161 def _GatherSrcs(self, targets):
162 """Builds the emma input source path arguments from provided targets.
165 targets: list of CoverageTargets
170 for target in targets:
243 a CoverageTargets object that contains set of parsed targets.
249 targets = coverage_targets.CoverageTargets()
250 targets.Parse(core_target_path)
255 targets.Parse(target_file_path)
256 return targets
282 """Create combined coverage reports for all targets and tests."""