• Home
Name Date Size #Lines LOC

..--

READMED07-May-2024885 2216

binary-formats.macho32bD07-May-20249.1 KiB

binary-formats.macho32lD07-May-2024812

binary-formats.macho64lD07-May-2024920

binary-formats.proftextD07-May-202415 54

copy_block_helper.gcdaD07-May-2024432

copy_block_helper.gcnoD07-May-20241.1 KiB

highlightedRanges.covmappingD07-May-2024355

highlightedRanges.profdataD07-May-2024848

lineExecutionCounts.covmappingD07-May-2024162

lineExecutionCounts.proftextD07-May-202444 98

range_based_for.gcdaD07-May-2024164

range_based_for.gcnoD07-May-2024552

regionMarkers.covmappingD07-May-2024202

regionMarkers.proftextD07-May-202456 98

report.covmappingD07-May-2024219

report.profdataD07-May-2024800

showExpansions.covmappingD07-May-2024250

showExpansions.profdataD07-May-2024672

templateInstantiations.covmappingD07-May-2024244

templateInstantiations.profdataD07-May-2024768

test.cppD07-May-20241 KiB7561

test.gcdaD07-May-2024904

test.gcnoD07-May-20243.5 KiB

test.hD07-May-202434 43

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

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

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

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

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

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

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

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

test_-b.outputD07-May-2024251 1411

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

test_-f.outputD07-May-2024664 3926

test_exit_block_arcs.gcdaD07-May-2024124

test_exit_block_arcs.gcnoD07-May-2024216

test_file_checksum_fail.gcdaD07-May-2024825

test_func_checksum_fail.gcdaD07-May-2024825

test_long_file_names.outputD07-May-2024276 96

test_long_paths.outputD07-May-2024334 96

test_missing.cpp.gcovD07-May-20241.9 KiB7877

test_missing.h.gcovD07-May-2024202 76

test_missing.outputD07-May-2024244 96

test_no_gcda.cpp.gcovD07-May-20242.3 KiB8079

test_no_gcda.h.gcovD07-May-2024219 98

test_no_gcda.outputD07-May-2024153 96

test_no_options.cpp.gcovD07-May-20242.3 KiB8079

test_no_options.h.gcovD07-May-2024227 98

test_no_options.outputD07-May-2024156 96

test_no_output.outputD07-May-202490 74

test_no_preserve_paths.outputD07-May-2024244 96

test_objdir.cpp.gcovD07-May-20242.3 KiB8079

test_objdir.h.gcovD07-May-2024241 98

test_paths.cpp.gcovD07-May-20242.4 KiB8079

test_paths.gcdaD07-May-2024904

test_paths.gcnoD07-May-20244.4 KiB

test_paths.h.gcovD07-May-2024260 98

test_preserve_paths.outputD07-May-2024284 96

test_read_fail.gcnoD07-May-202471

universal-binaryD07-May-2024960

universal-binary.proftextD07-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