Home | History | Annotate | only in /external/llvm/test/tools/llvm-cov/Inputs
Up to higher level directory
NameDateSize
binary-formats.macho32b05-Oct-20179.1K
binary-formats.macho32l05-Oct-2017812
binary-formats.macho64l05-Oct-2017920
binary-formats.proftext05-Oct-201715
binary-formats.v1.linux64l05-Oct-20172M
binary-formats.v2.linux32l05-Oct-201728.7K
binary-formats.v2.linux64l05-Oct-20172M
combine_expansions.covmapping05-Oct-2017168
combine_expansions.proftext05-Oct-201759
copy_block_helper.gcda05-Oct-2017432
copy_block_helper.gcno05-Oct-20171.1K
double_dots.covmapping05-Oct-2017108
double_dots.proftext05-Oct-201759
elf_binary_comdat.profdata05-Oct-2017840
gcov47_compatibility.gcda05-Oct-2017116
gcov47_compatibility.gcno05-Oct-2017228
highlightedRanges.covmapping05-Oct-2017360
highlightedRanges.profdata05-Oct-2017848
instrprof-comdat.h05-Oct-2017988
lineExecutionCounts.covmapping05-Oct-2017168
lineExecutionCounts.proftext05-Oct-201744
prefer_used_to_unused.covmapping05-Oct-2017420
prefer_used_to_unused.cpp05-Oct-201791
prefer_used_to_unused.proftext05-Oct-2017202
prevent_false_instantiations.covmapping05-Oct-2017336
prevent_false_instantiations.cpp05-Oct-2017164
prevent_false_instantiations.proftext05-Oct-2017191
range_based_for.gcda05-Oct-2017164
range_based_for.gcno05-Oct-2017552
README05-Oct-2017885
regionMarkers.covmapping05-Oct-2017208
regionMarkers.proftext05-Oct-201756
report.covmapping05-Oct-2017219
report.profdata05-Oct-2017800
showExpansions.covmapping05-Oct-2017256
showExpansions.profdata05-Oct-2017672
templateInstantiations.covmapping05-Oct-2017248
templateInstantiations.profdata05-Oct-2017768
test.cpp05-Oct-20171K
test.gcda05-Oct-2017904
test.gcno05-Oct-20173.5K
test.h05-Oct-201734
test_-a.cpp.gcov05-Oct-20173.1K
test_-a.h.gcov05-Oct-2017277
test_-a_-b.cpp.gcov05-Oct-20173.9K
test_-a_-b.h.gcov05-Oct-2017403
test_-a_-b_-c_-u.cpp.gcov05-Oct-20174.6K
test_-a_-b_-c_-u.h.gcov05-Oct-2017453
test_-a_-b_-u.cpp.gcov05-Oct-20174.6K
test_-a_-b_-u.h.gcov05-Oct-2017459
test_-b.output05-Oct-2017251
test_-b_-f.output05-Oct-20171K
test_-f.output05-Oct-2017664
test_exit_block_arcs.gcda05-Oct-2017124
test_exit_block_arcs.gcno05-Oct-2017216
test_file_checksum_fail.gcda05-Oct-2017825
test_func_checksum_fail.gcda05-Oct-2017825
test_long_file_names.output05-Oct-2017276
test_long_paths.output05-Oct-2017334
test_missing.cpp.gcov05-Oct-20171.9K
test_missing.h.gcov05-Oct-2017202
test_missing.output05-Oct-2017244
test_no_gcda.cpp.gcov05-Oct-20172.3K
test_no_gcda.h.gcov05-Oct-2017219
test_no_gcda.output05-Oct-2017153
test_no_options.cpp.gcov05-Oct-20172.3K
test_no_options.h.gcov05-Oct-2017227
test_no_options.output05-Oct-2017156
test_no_output.output05-Oct-201790
test_no_preserve_paths.output05-Oct-2017244
test_objdir.cpp.gcov05-Oct-20172.3K
test_objdir.h.gcov05-Oct-2017241
test_paths.cpp.gcov05-Oct-20172.4K
test_paths.gcda05-Oct-2017904
test_paths.gcno05-Oct-20174.4K
test_paths.h.gcov05-Oct-2017260
test_preserve_paths.output05-Oct-2017284
test_read_fail.gcno05-Oct-201771
universal-binary05-Oct-2017960
universal-binary.proftext05-Oct-201715

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