Home | History | Annotate | only in /external/llvm/test/tools/llvm-cov/Inputs
Up to higher level directory
NameDateSize
binary-formats.macho32b21-Aug-20189.1K
binary-formats.macho32l21-Aug-2018812
binary-formats.macho64l21-Aug-2018920
binary-formats.proftext21-Aug-201815
binary-formats.v1.linux64l21-Aug-20182M
binary-formats.v2.linux32l21-Aug-201828.7K
binary-formats.v2.linux64l21-Aug-20182M
combine_expansions.covmapping21-Aug-2018168
combine_expansions.proftext21-Aug-201859
copy_block_helper.gcda21-Aug-2018432
copy_block_helper.gcno21-Aug-20181.1K
double_dots.covmapping21-Aug-2018108
double_dots.proftext21-Aug-201859
elf_binary_comdat.profdata21-Aug-2018840
gcov47_compatibility.gcda21-Aug-2018116
gcov47_compatibility.gcno21-Aug-2018228
highlightedRanges.covmapping21-Aug-2018360
highlightedRanges.profdata21-Aug-2018848
instrprof-comdat.h21-Aug-2018988
lineExecutionCounts.covmapping21-Aug-2018168
lineExecutionCounts.proftext21-Aug-201844
prefer_used_to_unused.covmapping21-Aug-2018420
prefer_used_to_unused.cpp21-Aug-201891
prefer_used_to_unused.proftext21-Aug-2018202
prevent_false_instantiations.covmapping21-Aug-2018336
prevent_false_instantiations.cpp21-Aug-2018164
prevent_false_instantiations.proftext21-Aug-2018191
range_based_for.gcda21-Aug-2018164
range_based_for.gcno21-Aug-2018552
README21-Aug-2018885
regionMarkers.covmapping21-Aug-2018208
regionMarkers.proftext21-Aug-201856
report.covmapping21-Aug-2018219
report.profdata21-Aug-2018800
showExpansions.covmapping21-Aug-2018256
showExpansions.profdata21-Aug-2018672
templateInstantiations.covmapping21-Aug-2018248
templateInstantiations.profdata21-Aug-2018768
test.cpp21-Aug-20181K
test.gcda21-Aug-2018904
test.gcno21-Aug-20183.5K
test.h21-Aug-201834
test_-a.cpp.gcov21-Aug-20183.1K
test_-a.h.gcov21-Aug-2018277
test_-a_-b.cpp.gcov21-Aug-20183.9K
test_-a_-b.h.gcov21-Aug-2018403
test_-a_-b_-c_-u.cpp.gcov21-Aug-20184.6K
test_-a_-b_-c_-u.h.gcov21-Aug-2018453
test_-a_-b_-u.cpp.gcov21-Aug-20184.6K
test_-a_-b_-u.h.gcov21-Aug-2018459
test_-b.output21-Aug-2018251
test_-b_-f.output21-Aug-20181K
test_-f.output21-Aug-2018664
test_exit_block_arcs.gcda21-Aug-2018124
test_exit_block_arcs.gcno21-Aug-2018216
test_file_checksum_fail.gcda21-Aug-2018825
test_func_checksum_fail.gcda21-Aug-2018825
test_long_file_names.output21-Aug-2018276
test_long_paths.output21-Aug-2018334
test_missing.cpp.gcov21-Aug-20181.9K
test_missing.h.gcov21-Aug-2018202
test_missing.output21-Aug-2018244
test_no_gcda.cpp.gcov21-Aug-20182.3K
test_no_gcda.h.gcov21-Aug-2018219
test_no_gcda.output21-Aug-2018153
test_no_options.cpp.gcov21-Aug-20182.3K
test_no_options.h.gcov21-Aug-2018227
test_no_options.output21-Aug-2018156
test_no_output.output21-Aug-201890
test_no_preserve_paths.output21-Aug-2018244
test_objdir.cpp.gcov21-Aug-20182.3K
test_objdir.h.gcov21-Aug-2018241
test_paths.cpp.gcov21-Aug-20182.4K
test_paths.gcda21-Aug-2018904
test_paths.gcno21-Aug-20184.4K
test_paths.h.gcov21-Aug-2018260
test_preserve_paths.output21-Aug-2018284
test_read_fail.gcno21-Aug-201871
universal-binary21-Aug-2018960
universal-binary.proftext21-Aug-201815

README

      1 These inputs were pre-generated to allow for easier testing of llvm-cov.
      2 
      3 The files used to test the gcov compatible code coverage tool were generated
      4 using 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 
     12 The 'covmapping' files that are used to test llvm-cov contain raw sections
     13 with the coverage mapping data generated by the compiler and linker. They are
     14 created 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 
     18 The 'profdata' files were generated by running an instrumented version of the
     19 program and merging the raw profile data using llvm-profdata.
     20   ./test
     21   llvm-profdata merge -o test.profdata default.profraw
     22