Lines Matching full:gcov
17 """This utility generates a single lcov tracefile from a gcov tar file."""
60 """Create a shell script that is compatible with gcov.
68 file_path.write_text(f'#!/bin/bash\nexec {llvm_cov_filename} gcov "$@"')
79 """Call lcov to create tracefile based on gcov data files.
82 gcov_dir: Directory that contains the extracted gcov data files as retrieved
86 gcov_filename: The absolute path to gcov or a compatible script.
105 f"--gcov-tool {gcov_filename} "
108 "--ignore-errors gcov,gcov,unused,unused "
426 return os.path.join(self.tmp_dir, "tmp", "llvm-gcov.sh")
431 description="Generate lcov tracefiles from gcov file dumps"
439 "Either a path to a gcov tar file or a directory that contains gcov"
440 " tar file(s). The gcov tar file is expected to be created from"
559 logging.error("Unable to find a gcov tar under %s", args.tar_location)