Home | History | Annotate | only in /external/llvm/test/tools/llvm-cov/Inputs
Up to higher level directory
NameDateSize
binary-formats.macho32b22-Oct-20209.1K
binary-formats.macho32l22-Oct-2020812
binary-formats.macho64l22-Oct-2020920
binary-formats.proftext22-Oct-202015
binary-formats.v1.linux64l22-Oct-20202M
binary-formats.v2.linux32l22-Oct-202028.7K
binary-formats.v2.linux64l22-Oct-20202M
combine_expansions.covmapping22-Oct-2020168
combine_expansions.proftext22-Oct-202059
copy_block_helper.gcda22-Oct-2020432
copy_block_helper.gcno22-Oct-20201.1K
double_dots.covmapping22-Oct-2020108
double_dots.proftext22-Oct-202059
elf_binary_comdat.profdata22-Oct-2020840
gcov47_compatibility.gcda22-Oct-2020116
gcov47_compatibility.gcno22-Oct-2020228
highlightedRanges.covmapping22-Oct-2020360
highlightedRanges.profdata22-Oct-2020848
instrprof-comdat.h22-Oct-2020988
lineExecutionCounts.covmapping22-Oct-2020168
lineExecutionCounts.proftext22-Oct-202044
prefer_used_to_unused.covmapping22-Oct-2020420
prefer_used_to_unused.cpp22-Oct-202091
prefer_used_to_unused.proftext22-Oct-2020202
prevent_false_instantiations.covmapping22-Oct-2020336
prevent_false_instantiations.cpp22-Oct-2020164
prevent_false_instantiations.proftext22-Oct-2020191
range_based_for.gcda22-Oct-2020164
range_based_for.gcno22-Oct-2020552
README22-Oct-2020885
regionMarkers.covmapping22-Oct-2020208
regionMarkers.proftext22-Oct-202056
report.covmapping22-Oct-2020219
report.profdata22-Oct-2020800
showExpansions.covmapping22-Oct-2020256
showExpansions.profdata22-Oct-2020672
templateInstantiations.covmapping22-Oct-2020248
templateInstantiations.profdata22-Oct-2020768
test.cpp22-Oct-20201K
test.gcda22-Oct-2020904
test.gcno22-Oct-20203.5K
test.h22-Oct-202034
test_-a.cpp.gcov22-Oct-20203.1K
test_-a.h.gcov22-Oct-2020277
test_-a_-b.cpp.gcov22-Oct-20203.9K
test_-a_-b.h.gcov22-Oct-2020403
test_-a_-b_-c_-u.cpp.gcov22-Oct-20204.6K
test_-a_-b_-c_-u.h.gcov22-Oct-2020453
test_-a_-b_-u.cpp.gcov22-Oct-20204.6K
test_-a_-b_-u.h.gcov22-Oct-2020459
test_-b.output22-Oct-2020251
test_-b_-f.output22-Oct-20201K
test_-f.output22-Oct-2020664
test_exit_block_arcs.gcda22-Oct-2020124
test_exit_block_arcs.gcno22-Oct-2020216
test_file_checksum_fail.gcda22-Oct-2020825
test_func_checksum_fail.gcda22-Oct-2020825
test_long_file_names.output22-Oct-2020276
test_long_paths.output22-Oct-2020334
test_missing.cpp.gcov22-Oct-20201.9K
test_missing.h.gcov22-Oct-2020202
test_missing.output22-Oct-2020244
test_no_gcda.cpp.gcov22-Oct-20202.3K
test_no_gcda.h.gcov22-Oct-2020219
test_no_gcda.output22-Oct-2020153
test_no_options.cpp.gcov22-Oct-20202.3K
test_no_options.h.gcov22-Oct-2020227
test_no_options.output22-Oct-2020156
test_no_output.output22-Oct-202090
test_no_preserve_paths.output22-Oct-2020244
test_objdir.cpp.gcov22-Oct-20202.3K
test_objdir.h.gcov22-Oct-2020241
test_paths.cpp.gcov22-Oct-20202.4K
test_paths.gcda22-Oct-2020904
test_paths.gcno22-Oct-20204.4K
test_paths.h.gcov22-Oct-2020260
test_preserve_paths.output22-Oct-2020284
test_read_fail.gcno22-Oct-202071
universal-binary22-Oct-2020960
universal-binary.proftext22-Oct-202015

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