Home | History | Annotate | only in /external/llvm/test/tools/llvm-cov/Inputs
Up to higher level directory
NameDateSize
binary-formats.macho32b24-Aug-20169.1K
binary-formats.macho32l24-Aug-2016812
binary-formats.macho64l24-Aug-2016920
binary-formats.proftext24-Aug-201615
copy_block_helper.gcda24-Aug-2016432
copy_block_helper.gcno24-Aug-20161.1K
highlightedRanges.covmapping24-Aug-2016355
highlightedRanges.profdata24-Aug-2016848
lineExecutionCounts.covmapping24-Aug-2016162
lineExecutionCounts.proftext24-Aug-201644
range_based_for.gcda24-Aug-2016164
range_based_for.gcno24-Aug-2016552
README24-Aug-2016885
regionMarkers.covmapping24-Aug-2016202
regionMarkers.proftext24-Aug-201656
report.covmapping24-Aug-2016219
report.profdata24-Aug-2016800
showExpansions.covmapping24-Aug-2016250
showExpansions.profdata24-Aug-2016672
templateInstantiations.covmapping24-Aug-2016244
templateInstantiations.profdata24-Aug-2016768
test.cpp24-Aug-20161K
test.gcda24-Aug-2016904
test.gcno24-Aug-20163.5K
test.h24-Aug-201634
test_-a.cpp.gcov24-Aug-20163.1K
test_-a.h.gcov24-Aug-2016277
test_-a_-b.cpp.gcov24-Aug-20163.9K
test_-a_-b.h.gcov24-Aug-2016403
test_-a_-b_-c_-u.cpp.gcov24-Aug-20164.6K
test_-a_-b_-c_-u.h.gcov24-Aug-2016453
test_-a_-b_-u.cpp.gcov24-Aug-20164.6K
test_-a_-b_-u.h.gcov24-Aug-2016459
test_-b.output24-Aug-2016251
test_-b_-f.output24-Aug-20161K
test_-f.output24-Aug-2016664
test_exit_block_arcs.gcda24-Aug-2016124
test_exit_block_arcs.gcno24-Aug-2016216
test_file_checksum_fail.gcda24-Aug-2016825
test_func_checksum_fail.gcda24-Aug-2016825
test_long_file_names.output24-Aug-2016276
test_long_paths.output24-Aug-2016334
test_missing.cpp.gcov24-Aug-20161.9K
test_missing.h.gcov24-Aug-2016202
test_missing.output24-Aug-2016244
test_no_gcda.cpp.gcov24-Aug-20162.3K
test_no_gcda.h.gcov24-Aug-2016219
test_no_gcda.output24-Aug-2016153
test_no_options.cpp.gcov24-Aug-20162.3K
test_no_options.h.gcov24-Aug-2016227
test_no_options.output24-Aug-2016156
test_no_output.output24-Aug-201690
test_no_preserve_paths.output24-Aug-2016244
test_objdir.cpp.gcov24-Aug-20162.3K
test_objdir.h.gcov24-Aug-2016241
test_paths.cpp.gcov24-Aug-20162.4K
test_paths.gcda24-Aug-2016904
test_paths.gcno24-Aug-20164.4K
test_paths.h.gcov24-Aug-2016260
test_preserve_paths.output24-Aug-2016284
test_read_fail.gcno24-Aug-201671
universal-binary24-Aug-2016960
universal-binary.proftext24-Aug-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