Name Date Size #Lines LOC

..--

READMEH A D15-Oct-2015885 2216

copy_block_helper.gcdaHD15-Oct-2015432

copy_block_helper.gcnoHD15-Oct-20151.1 KiB

highlightedRanges.covmappingHD15-Oct-2015355

highlightedRanges.profdataHD15-Oct-2015848

lineExecutionCounts.covmappingHD15-Oct-2015162

lineExecutionCounts.profdataHD15-Oct-2015656

range_based_for.gcdaHD15-Oct-2015164

range_based_for.gcnoHD15-Oct-2015552

regionMarkers.covmappingHD15-Oct-2015194

regionMarkers.profdataHD15-Oct-2015656

report.covmappingHD15-Oct-2015256

report.profdataHD15-Oct-2015800

showExpansions.covmappingHD15-Oct-2015194

showExpansions.profdataHD15-Oct-2015672

templateInstantiations.covmappingHD15-Oct-2015244

templateInstantiations.profdataHD15-Oct-2015768

test.cppH A D15-Oct-20151 KiB7561

test.gcdaHD15-Oct-2015904

test.gcnoHD15-Oct-20153.5 KiB

test.hH A D15-Oct-201534 43

test_-a.cpp.gcovH A D15-Oct-20153.1 KiB112111

test_-a.h.gcovH A D15-Oct-2015277 1110

test_-a_-b.cpp.gcovH A D15-Oct-20153.9 KiB135134

test_-a_-b.h.gcovH A D15-Oct-2015403 1312

test_-a_-b_-c_-u.cpp.gcovH A D15-Oct-20154.6 KiB161160

test_-a_-b_-c_-u.h.gcovH A D15-Oct-2015453 1514

test_-a_-b_-u.cpp.gcovH A D15-Oct-20154.6 KiB161160

test_-a_-b_-u.h.gcovH A D15-Oct-2015459 1514

test_-b.outputH A D15-Oct-2015251 1411

test_-b_-f.outputH A D15-Oct-20151 KiB6653

test_-f.outputH A D15-Oct-2015664 3926

test_exit_block_arcs.gcdaHD15-Oct-2015124

test_exit_block_arcs.gcnoHD15-Oct-2015216

test_file_checksum_fail.gcdaHD15-Oct-2015825

test_func_checksum_fail.gcdaHD15-Oct-2015825

test_long_file_names.outputH A D15-Oct-2015276 96

test_long_paths.outputH A D15-Oct-2015334 96

test_missing.cpp.gcovH A D15-Oct-20151.9 KiB7877

test_missing.h.gcovH A D15-Oct-2015202 76

test_missing.outputH A D15-Oct-2015244 96

test_no_gcda.cpp.gcovH A D15-Oct-20152.3 KiB8079

test_no_gcda.h.gcovH A D15-Oct-2015219 98

test_no_gcda.outputH A D15-Oct-2015153 96

test_no_options.cpp.gcovH A D15-Oct-20152.3 KiB8079

test_no_options.h.gcovH A D15-Oct-2015227 98

test_no_options.outputH A D15-Oct-2015156 96

test_no_output.outputH A D15-Oct-201590 74

test_no_preserve_paths.outputH A D15-Oct-2015244 96

test_objdir.cpp.gcovH A D15-Oct-20152.3 KiB8079

test_objdir.h.gcovH A D15-Oct-2015241 98

test_paths.cpp.gcovH A D15-Oct-20152.4 KiB8079

test_paths.gcdaHD15-Oct-2015904

test_paths.gcnoHD15-Oct-20154.4 KiB

test_paths.h.gcovH A D15-Oct-2015260 98

test_preserve_paths.outputH A D15-Oct-2015284 96

test_read_fail.gcnoHD15-Oct-201571

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