• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..20-Jan-2022-

multiple_objects/H03-May-2022-6647

multiple_objects_not_all_instrumented/H03-May-2022-85

multithreaded_report/H03-May-2022-8668

sources_specified/H03-May-2022-2419

universal_bin_wrapping_archives/H03-May-2022-1310

READMEH A D20-Jan-2022885 2216

binary-formats.canonical.jsonH A D20-Jan-20221.4 KiB3231

binary-formats.proftextH A D20-Jan-202215 54

branch-c-general.cH A D20-Jan-20223.6 KiB261186

branch-c-general.proftextH A D20-Jan-20221.2 KiB207194

branch-logical-mixed.proftextH A D20-Jan-2022279 8582

branch-macros.proftextH A D20-Jan-2022276 5046

branch-showBranchPercentage.proftextH A D20-Jan-2022119 2927

branch-templates.proftextH A D20-Jan-2022322 3934

combine_expansions.proftextH A D20-Jan-202259 97

compilation_dir.proftextH A D20-Jan-202259 97

dir-with-filtering.proftextH A D20-Jan-2022242 3328

dir-with-filtering1.cppH A D20-Jan-202261 97

dir-with-filtering2.cppH A D20-Jan-202252 96

double_dots.proftextH A D20-Jan-202259 97

hideUnexecutedSubviews.proftextH A D20-Jan-202259 1714

instrprof-comdat.hH A D20-Jan-20221.1 KiB2915

lineExecutionCounts.proftextH A D20-Jan-202244 98

multiple-files.proftextH A D20-Jan-202247 2016

name_whitelist.cppH A D20-Jan-2022180 1918

name_whitelist.proftextH A D20-Jan-2022443 5749

path_equivalence.proftextH A D20-Jan-202259 97

prefer_used_to_unused.cppH A D20-Jan-202291 64

prefer_used_to_unused.proftextH A D20-Jan-2022202 2622

prevent_false_instantiations.cppH A D20-Jan-2022164 1612

prevent_false_instantiations.proftextH A D20-Jan-2022191 2723

regionMarkers.proftextH A D20-Jan-202256 98

showExpansions.jsonH A D20-Jan-2022192 54

showProjectSummary.proftextH A D20-Jan-202266 119

showProjectSummary.testH A D20-Jan-2022516 1614

showTabsHTML.proftextH A D20-Jan-202259 97

universal-binary.proftextH A D20-Jan-202215 54

zeroFunctionFile.hH A D20-Jan-202272 41

zeroFunctionFile.proftextH A D20-Jan-2022119 1715

README

1These inputs were pre-generated to allow for easier testing of llvm-cov.
2
3The files used to test the gcov compatible code coverage tool were generated
4using the following method:
5
6  test.gcno and test.gcda were create by running clang:
7    clang++ -g -ftest-coverage -fprofile-arcs test.cpp
8
9  test.cpp.gcov was created by running gcov 4.2.1:
10    gcov test.cpp
11
12The 'covmapping' files that are used to test llvm-cov contain raw sections
13with the coverage mapping data generated by the compiler and linker. They are
14created by running clang and llvm-cov:
15  clang++ -fprofile-instr-generate -fcoverage-mapping -o test test.cpp
16  llvm-cov convert-for-testing -o test.covmapping test
17
18The 'profdata' files were generated by running an instrumented version of the
19program and merging the raw profile data using llvm-profdata.
20  ./test
21  llvm-profdata merge -o test.profdata default.profraw
22