Home | History | Annotate | only in /external/llvm/test/tools/llvm-cov/Inputs
Up to higher level directory
NameDateSize
binary-formats.macho32b21-Oct-20169.1K
binary-formats.macho32l21-Oct-2016812
binary-formats.macho64l21-Oct-2016920
binary-formats.proftext21-Oct-201615
copy_block_helper.gcda21-Oct-2016432
copy_block_helper.gcno21-Oct-20161.1K
highlightedRanges.covmapping21-Oct-2016355
highlightedRanges.profdata21-Oct-2016848
lineExecutionCounts.covmapping21-Oct-2016162
lineExecutionCounts.proftext21-Oct-201644
range_based_for.gcda21-Oct-2016164
range_based_for.gcno21-Oct-2016552
README21-Oct-2016885
regionMarkers.covmapping21-Oct-2016202
regionMarkers.proftext21-Oct-201656
report.covmapping21-Oct-2016219
report.profdata21-Oct-2016800
showExpansions.covmapping21-Oct-2016250
showExpansions.profdata21-Oct-2016672
templateInstantiations.covmapping21-Oct-2016244
templateInstantiations.profdata21-Oct-2016768
test.cpp21-Oct-20161K
test.gcda21-Oct-2016904
test.gcno21-Oct-20163.5K
test.h21-Oct-201634
test_-a.cpp.gcov21-Oct-20163.1K
test_-a.h.gcov21-Oct-2016277
test_-a_-b.cpp.gcov21-Oct-20163.9K
test_-a_-b.h.gcov21-Oct-2016403
test_-a_-b_-c_-u.cpp.gcov21-Oct-20164.6K
test_-a_-b_-c_-u.h.gcov21-Oct-2016453
test_-a_-b_-u.cpp.gcov21-Oct-20164.6K
test_-a_-b_-u.h.gcov21-Oct-2016459
test_-b.output21-Oct-2016251
test_-b_-f.output21-Oct-20161K
test_-f.output21-Oct-2016664
test_exit_block_arcs.gcda21-Oct-2016124
test_exit_block_arcs.gcno21-Oct-2016216
test_file_checksum_fail.gcda21-Oct-2016825
test_func_checksum_fail.gcda21-Oct-2016825
test_long_file_names.output21-Oct-2016276
test_long_paths.output21-Oct-2016334
test_missing.cpp.gcov21-Oct-20161.9K
test_missing.h.gcov21-Oct-2016202
test_missing.output21-Oct-2016244
test_no_gcda.cpp.gcov21-Oct-20162.3K
test_no_gcda.h.gcov21-Oct-2016219
test_no_gcda.output21-Oct-2016153
test_no_options.cpp.gcov21-Oct-20162.3K
test_no_options.h.gcov21-Oct-2016227
test_no_options.output21-Oct-2016156
test_no_output.output21-Oct-201690
test_no_preserve_paths.output21-Oct-2016244
test_objdir.cpp.gcov21-Oct-20162.3K
test_objdir.h.gcov21-Oct-2016241
test_paths.cpp.gcov21-Oct-20162.4K
test_paths.gcda21-Oct-2016904
test_paths.gcno21-Oct-20164.4K
test_paths.h.gcov21-Oct-2016260
test_preserve_paths.output21-Oct-2016284
test_read_fail.gcno21-Oct-201671
universal-binary21-Oct-2016960
universal-binary.proftext21-Oct-201615

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