Home | History | Annotate | only in /external/llvm/test/tools/llvm-cov/Inputs
Up to higher level directory
NameDateSize
binary-formats.macho32b06-Dec-20179.1K
binary-formats.macho32l06-Dec-2017812
binary-formats.macho64l06-Dec-2017920
binary-formats.proftext06-Dec-201715
binary-formats.v1.linux64l06-Dec-20172M
binary-formats.v2.linux32l06-Dec-201728.7K
binary-formats.v2.linux64l06-Dec-20172M
combine_expansions.covmapping06-Dec-2017168
combine_expansions.proftext06-Dec-201759
copy_block_helper.gcda06-Dec-2017432
copy_block_helper.gcno06-Dec-20171.1K
double_dots.covmapping06-Dec-2017108
double_dots.proftext06-Dec-201759
elf_binary_comdat.profdata06-Dec-2017840
gcov47_compatibility.gcda06-Dec-2017116
gcov47_compatibility.gcno06-Dec-2017228
highlightedRanges.covmapping06-Dec-2017360
highlightedRanges.profdata06-Dec-2017848
instrprof-comdat.h06-Dec-2017988
lineExecutionCounts.covmapping06-Dec-2017168
lineExecutionCounts.proftext06-Dec-201744
prefer_used_to_unused.covmapping06-Dec-2017420
prefer_used_to_unused.cpp06-Dec-201791
prefer_used_to_unused.proftext06-Dec-2017202
prevent_false_instantiations.covmapping06-Dec-2017336
prevent_false_instantiations.cpp06-Dec-2017164
prevent_false_instantiations.proftext06-Dec-2017191
range_based_for.gcda06-Dec-2017164
range_based_for.gcno06-Dec-2017552
README06-Dec-2017885
regionMarkers.covmapping06-Dec-2017208
regionMarkers.proftext06-Dec-201756
report.covmapping06-Dec-2017219
report.profdata06-Dec-2017800
showExpansions.covmapping06-Dec-2017256
showExpansions.profdata06-Dec-2017672
templateInstantiations.covmapping06-Dec-2017248
templateInstantiations.profdata06-Dec-2017768
test.cpp06-Dec-20171K
test.gcda06-Dec-2017904
test.gcno06-Dec-20173.5K
test.h06-Dec-201734
test_-a.cpp.gcov06-Dec-20173.1K
test_-a.h.gcov06-Dec-2017277
test_-a_-b.cpp.gcov06-Dec-20173.9K
test_-a_-b.h.gcov06-Dec-2017403
test_-a_-b_-c_-u.cpp.gcov06-Dec-20174.6K
test_-a_-b_-c_-u.h.gcov06-Dec-2017453
test_-a_-b_-u.cpp.gcov06-Dec-20174.6K
test_-a_-b_-u.h.gcov06-Dec-2017459
test_-b.output06-Dec-2017251
test_-b_-f.output06-Dec-20171K
test_-f.output06-Dec-2017664
test_exit_block_arcs.gcda06-Dec-2017124
test_exit_block_arcs.gcno06-Dec-2017216
test_file_checksum_fail.gcda06-Dec-2017825
test_func_checksum_fail.gcda06-Dec-2017825
test_long_file_names.output06-Dec-2017276
test_long_paths.output06-Dec-2017334
test_missing.cpp.gcov06-Dec-20171.9K
test_missing.h.gcov06-Dec-2017202
test_missing.output06-Dec-2017244
test_no_gcda.cpp.gcov06-Dec-20172.3K
test_no_gcda.h.gcov06-Dec-2017219
test_no_gcda.output06-Dec-2017153
test_no_options.cpp.gcov06-Dec-20172.3K
test_no_options.h.gcov06-Dec-2017227
test_no_options.output06-Dec-2017156
test_no_output.output06-Dec-201790
test_no_preserve_paths.output06-Dec-2017244
test_objdir.cpp.gcov06-Dec-20172.3K
test_objdir.h.gcov06-Dec-2017241
test_paths.cpp.gcov06-Dec-20172.4K
test_paths.gcda06-Dec-2017904
test_paths.gcno06-Dec-20174.4K
test_paths.h.gcov06-Dec-2017260
test_preserve_paths.output06-Dec-2017284
test_read_fail.gcno06-Dec-201771
universal-binary06-Dec-2017960
universal-binary.proftext06-Dec-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