• Home
Name Date Size #Lines LOC

..--

READMED04-Jul-2025885 2216

binary-formats.macho32bD04-Jul-20259.1 KiB

binary-formats.macho32lD04-Jul-2025812

binary-formats.macho64lD04-Jul-2025920

binary-formats.proftextD04-Jul-202515 54

binary-formats.v1.linux64lD04-Jul-20252 MiB

binary-formats.v2.linux32lD04-Jul-202528.7 KiB

binary-formats.v2.linux64lD04-Jul-20252 MiB

combine_expansions.covmappingD04-Jul-2025168

combine_expansions.proftextD04-Jul-202559 97

copy_block_helper.gcdaD04-Jul-2025432

copy_block_helper.gcnoD04-Jul-20251.1 KiB

double_dots.covmappingD04-Jul-2025108

double_dots.proftextD04-Jul-202559 97

elf_binary_comdat.profdataD04-Jul-2025840

gcov47_compatibility.gcdaD04-Jul-2025116

gcov47_compatibility.gcnoD04-Jul-2025228

highlightedRanges.covmappingD04-Jul-2025360

highlightedRanges.profdataD04-Jul-2025848

instrprof-comdat.hD04-Jul-2025988 2515

lineExecutionCounts.covmappingD04-Jul-2025168

lineExecutionCounts.proftextD04-Jul-202544 98

prefer_used_to_unused.covmappingD04-Jul-2025420

prefer_used_to_unused.cppD04-Jul-202591 64

prefer_used_to_unused.proftextD04-Jul-2025202 2622

prevent_false_instantiations.covmappingD04-Jul-2025336

prevent_false_instantiations.cppD04-Jul-2025164 1612

prevent_false_instantiations.proftextD04-Jul-2025191 2723

range_based_for.gcdaD04-Jul-2025164

range_based_for.gcnoD04-Jul-2025552

regionMarkers.covmappingD04-Jul-2025208

regionMarkers.proftextD04-Jul-202556 98

report.covmappingD04-Jul-2025219

report.profdataD04-Jul-2025800

showExpansions.covmappingD04-Jul-2025256

showExpansions.profdataD04-Jul-2025672

templateInstantiations.covmappingD04-Jul-2025248

templateInstantiations.profdataD04-Jul-2025768

test.cppD04-Jul-20251 KiB7561

test.gcdaD04-Jul-2025904

test.gcnoD04-Jul-20253.5 KiB

test.hD04-Jul-202534 43

test_-a.cpp.gcovD04-Jul-20253.1 KiB112111

test_-a.h.gcovD04-Jul-2025277 1110

test_-a_-b.cpp.gcovD04-Jul-20253.9 KiB135134

test_-a_-b.h.gcovD04-Jul-2025403 1312

test_-a_-b_-c_-u.cpp.gcovD04-Jul-20254.6 KiB161160

test_-a_-b_-c_-u.h.gcovD04-Jul-2025453 1514

test_-a_-b_-u.cpp.gcovD04-Jul-20254.6 KiB161160

test_-a_-b_-u.h.gcovD04-Jul-2025459 1514

test_-b.outputD04-Jul-2025251 1411

test_-b_-f.outputD04-Jul-20251 KiB6653

test_-f.outputD04-Jul-2025664 3926

test_exit_block_arcs.gcdaD04-Jul-2025124

test_exit_block_arcs.gcnoD04-Jul-2025216

test_file_checksum_fail.gcdaD04-Jul-2025825

test_func_checksum_fail.gcdaD04-Jul-2025825

test_long_file_names.outputD04-Jul-2025276 96

test_long_paths.outputD04-Jul-2025334 96

test_missing.cpp.gcovD04-Jul-20251.9 KiB7877

test_missing.h.gcovD04-Jul-2025202 76

test_missing.outputD04-Jul-2025244 96

test_no_gcda.cpp.gcovD04-Jul-20252.3 KiB8079

test_no_gcda.h.gcovD04-Jul-2025219 98

test_no_gcda.outputD04-Jul-2025153 96

test_no_options.cpp.gcovD04-Jul-20252.3 KiB8079

test_no_options.h.gcovD04-Jul-2025227 98

test_no_options.outputD04-Jul-2025156 96

test_no_output.outputD04-Jul-202590 74

test_no_preserve_paths.outputD04-Jul-2025244 96

test_objdir.cpp.gcovD04-Jul-20252.3 KiB8079

test_objdir.h.gcovD04-Jul-2025241 98

test_paths.cpp.gcovD04-Jul-20252.4 KiB8079

test_paths.gcdaD04-Jul-2025904

test_paths.gcnoD04-Jul-20254.4 KiB

test_paths.h.gcovD04-Jul-2025260 98

test_preserve_paths.outputD04-Jul-2025284 96

test_read_fail.gcnoD04-Jul-202571

universal-binaryD04-Jul-2025960

universal-binary.proftextD04-Jul-202515 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