• Home
Name Date Size #Lines LOC

..--

READMED03-May-2024885 2216

binary-formats.macho32bD03-May-20249.1 KiB

binary-formats.macho32lD03-May-2024812

binary-formats.macho64lD03-May-2024920

binary-formats.proftextD03-May-202415 54

binary-formats.v1.linux64lD03-May-20242 MiB

binary-formats.v2.linux32lD03-May-202428.7 KiB

binary-formats.v2.linux64lD03-May-20242 MiB

combine_expansions.covmappingD03-May-2024168

combine_expansions.proftextD03-May-202459 97

copy_block_helper.gcdaD03-May-2024432

copy_block_helper.gcnoD03-May-20241.1 KiB

double_dots.covmappingD03-May-2024108

double_dots.proftextD03-May-202459 97

elf_binary_comdat.profdataD03-May-2024840

gcov47_compatibility.gcdaD03-May-2024116

gcov47_compatibility.gcnoD03-May-2024228

highlightedRanges.covmappingD03-May-2024360

highlightedRanges.profdataD03-May-2024848

instrprof-comdat.hD03-May-2024988 2515

lineExecutionCounts.covmappingD03-May-2024168

lineExecutionCounts.proftextD03-May-202444 98

prefer_used_to_unused.covmappingD03-May-2024420

prefer_used_to_unused.cppD03-May-202491 64

prefer_used_to_unused.proftextD03-May-2024202 2622

prevent_false_instantiations.covmappingD03-May-2024336

prevent_false_instantiations.cppD03-May-2024164 1612

prevent_false_instantiations.proftextD03-May-2024191 2723

range_based_for.gcdaD03-May-2024164

range_based_for.gcnoD03-May-2024552

regionMarkers.covmappingD03-May-2024208

regionMarkers.proftextD03-May-202456 98

report.covmappingD03-May-2024219

report.profdataD03-May-2024800

showExpansions.covmappingD03-May-2024256

showExpansions.profdataD03-May-2024672

templateInstantiations.covmappingD03-May-2024248

templateInstantiations.profdataD03-May-2024768

test.cppD03-May-20241 KiB7561

test.gcdaD03-May-2024904

test.gcnoD03-May-20243.5 KiB

test.hD03-May-202434 43

test_-a.cpp.gcovD03-May-20243.1 KiB112111

test_-a.h.gcovD03-May-2024277 1110

test_-a_-b.cpp.gcovD03-May-20243.9 KiB135134

test_-a_-b.h.gcovD03-May-2024403 1312

test_-a_-b_-c_-u.cpp.gcovD03-May-20244.6 KiB161160

test_-a_-b_-c_-u.h.gcovD03-May-2024453 1514

test_-a_-b_-u.cpp.gcovD03-May-20244.6 KiB161160

test_-a_-b_-u.h.gcovD03-May-2024459 1514

test_-b.outputD03-May-2024251 1411

test_-b_-f.outputD03-May-20241 KiB6653

test_-f.outputD03-May-2024664 3926

test_exit_block_arcs.gcdaD03-May-2024124

test_exit_block_arcs.gcnoD03-May-2024216

test_file_checksum_fail.gcdaD03-May-2024825

test_func_checksum_fail.gcdaD03-May-2024825

test_long_file_names.outputD03-May-2024276 96

test_long_paths.outputD03-May-2024334 96

test_missing.cpp.gcovD03-May-20241.9 KiB7877

test_missing.h.gcovD03-May-2024202 76

test_missing.outputD03-May-2024244 96

test_no_gcda.cpp.gcovD03-May-20242.3 KiB8079

test_no_gcda.h.gcovD03-May-2024219 98

test_no_gcda.outputD03-May-2024153 96

test_no_options.cpp.gcovD03-May-20242.3 KiB8079

test_no_options.h.gcovD03-May-2024227 98

test_no_options.outputD03-May-2024156 96

test_no_output.outputD03-May-202490 74

test_no_preserve_paths.outputD03-May-2024244 96

test_objdir.cpp.gcovD03-May-20242.3 KiB8079

test_objdir.h.gcovD03-May-2024241 98

test_paths.cpp.gcovD03-May-20242.4 KiB8079

test_paths.gcdaD03-May-2024904

test_paths.gcnoD03-May-20244.4 KiB

test_paths.h.gcovD03-May-2024260 98

test_preserve_paths.outputD03-May-2024284 96

test_read_fail.gcnoD03-May-202471

universal-binaryD03-May-2024960

universal-binary.proftextD03-May-202415 54

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