You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jianglk.darker 7ee447c011
v811_spc009_project
4 months ago
..
multiple_objects v811_spc009_project 4 months ago
multiple_objects_not_all_instrumented v811_spc009_project 4 months ago
multithreaded_report v811_spc009_project 4 months ago
sources_specified v811_spc009_project 4 months ago
universal_bin_wrapping_archives v811_spc009_project 4 months ago
README v811_spc009_project 4 months ago
binary-formats.canonical.json v811_spc009_project 4 months ago
binary-formats.macho32b v811_spc009_project 4 months ago
binary-formats.macho32l v811_spc009_project 4 months ago
binary-formats.macho64l v811_spc009_project 4 months ago
binary-formats.proftext v811_spc009_project 4 months ago
binary-formats.v1.linux64l v811_spc009_project 4 months ago
binary-formats.v2.linux32l v811_spc009_project 4 months ago
binary-formats.v2.linux64l v811_spc009_project 4 months ago
binary-formats.v3.macho64l v811_spc009_project 4 months ago
combine_expansions.covmapping v811_spc009_project 4 months ago
combine_expansions.proftext v811_spc009_project 4 months ago
deferred-regions.covmapping v811_spc009_project 4 months ago
deferred-regions.profdata v811_spc009_project 4 months ago
dir-with-filtering.covmapping v811_spc009_project 4 months ago
dir-with-filtering.proftext v811_spc009_project 4 months ago
dir-with-filtering1.cpp v811_spc009_project 4 months ago
dir-with-filtering2.cpp v811_spc009_project 4 months ago
double_dots.covmapping v811_spc009_project 4 months ago
double_dots.proftext v811_spc009_project 4 months ago
elf_binary_comdat.profdata v811_spc009_project 4 months ago
hideUnexecutedSubviews.proftext v811_spc009_project 4 months ago
highlightedRanges.covmapping v811_spc009_project 4 months ago
highlightedRanges.profdata v811_spc009_project 4 months ago
ifdef.covmapping v811_spc009_project 4 months ago
ifdef.profdata v811_spc009_project 4 months ago
instrprof-comdat.h v811_spc009_project 4 months ago
lineExecutionCounts.covmapping v811_spc009_project 4 months ago
lineExecutionCounts.proftext v811_spc009_project 4 months ago
malformedRegions.covmapping v811_spc009_project 4 months ago
multiple-files.covmapping v811_spc009_project 4 months ago
multiple-files.proftext v811_spc009_project 4 months ago
multiple-files2.covmapping v811_spc009_project 4 months ago
name_whitelist.covmapping v811_spc009_project 4 months ago
name_whitelist.cpp v811_spc009_project 4 months ago
name_whitelist.proftext v811_spc009_project 4 months ago
native_separators.covmapping v811_spc009_project 4 months ago
path_equivalence.covmapping v811_spc009_project 4 months ago
path_equivalence.proftext v811_spc009_project 4 months ago
prefer_used_to_unused.covmapping v811_spc009_project 4 months ago
prefer_used_to_unused.cpp v811_spc009_project 4 months ago
prefer_used_to_unused.proftext v811_spc009_project 4 months ago
prevent_false_instantiations.covmapping v811_spc009_project 4 months ago
prevent_false_instantiations.cpp v811_spc009_project 4 months ago
prevent_false_instantiations.proftext v811_spc009_project 4 months ago
range_based_for.gcda v811_spc009_project 4 months ago
range_based_for.gcno v811_spc009_project 4 months ago
regionMarkers.covmapping v811_spc009_project 4 months ago
regionMarkers.proftext v811_spc009_project 4 months ago
report.covmapping v811_spc009_project 4 months ago
report.profdata v811_spc009_project 4 months ago
showExpansions.covmapping v811_spc009_project 4 months ago
showExpansions.json v811_spc009_project 4 months ago
showExpansions.profdata v811_spc009_project 4 months ago
showProjectSummary.covmapping v811_spc009_project 4 months ago
showProjectSummary.proftext v811_spc009_project 4 months ago
showProjectSummary.test v811_spc009_project 4 months ago
showTabsHTML.covmapping v811_spc009_project 4 months ago
showTabsHTML.proftext v811_spc009_project 4 months ago
templateInstantiations.covmapping v811_spc009_project 4 months ago
templateInstantiations.profdata v811_spc009_project 4 months ago
universal-binary v811_spc009_project 4 months ago
universal-binary.proftext v811_spc009_project 4 months ago
whitelist1.txt v811_spc009_project 4 months ago
whitelist2.txt v811_spc009_project 4 months ago
zeroFunctionFile.covmapping v811_spc009_project 4 months ago
zeroFunctionFile.h v811_spc009_project 4 months ago
zeroFunctionFile.proftext v811_spc009_project 4 months ago

README

These inputs were pre-generated to allow for easier testing of llvm-cov.

The files used to test the gcov compatible code coverage tool were generated
using the following method:

  test.gcno and test.gcda were create by running clang:
    clang++ -g -ftest-coverage -fprofile-arcs test.cpp

  test.cpp.gcov was created by running gcov 4.2.1:
    gcov test.cpp

The 'covmapping' files that are used to test llvm-cov contain raw sections
with the coverage mapping data generated by the compiler and linker. They are
created by running clang and llvm-cov:
  clang++ -fprofile-instr-generate -fcoverage-mapping -o test test.cpp
  llvm-cov convert-for-testing -o test.covmapping test

The 'profdata' files were generated by running an instrumented version of the
program and merging the raw profile data using llvm-profdata.
  ./test
  llvm-profdata merge -o test.profdata default.profraw