Home | History | Annotate | only in /external/llvm/test/tools/llvm-cov/Inputs
Up to higher level directory
NameDateSize
binary-formats.macho32b08-Oct-20159.1K
binary-formats.macho32l08-Oct-2015812
binary-formats.macho64l08-Oct-2015920
binary-formats.proftext08-Oct-201515
copy_block_helper.gcda08-Oct-2015432
copy_block_helper.gcno08-Oct-20151.1K
highlightedRanges.covmapping08-Oct-2015355
highlightedRanges.profdata08-Oct-2015848
lineExecutionCounts.covmapping08-Oct-2015162
lineExecutionCounts.proftext08-Oct-201538
range_based_for.gcda08-Oct-2015164
range_based_for.gcno08-Oct-2015552
README08-Oct-2015885
regionMarkers.covmapping08-Oct-2015202
regionMarkers.proftext08-Oct-201538
report.covmapping08-Oct-2015219
report.profdata08-Oct-2015800
showExpansions.covmapping08-Oct-2015250
showExpansions.profdata08-Oct-2015672
templateInstantiations.covmapping08-Oct-2015244
templateInstantiations.profdata08-Oct-2015768
test.cpp08-Oct-20151K
test.gcda08-Oct-2015904
test.gcno08-Oct-20153.5K
test.h08-Oct-201534
test_-a.cpp.gcov08-Oct-20153.1K
test_-a.h.gcov08-Oct-2015277
test_-a_-b.cpp.gcov08-Oct-20153.9K
test_-a_-b.h.gcov08-Oct-2015403
test_-a_-b_-c_-u.cpp.gcov08-Oct-20154.6K
test_-a_-b_-c_-u.h.gcov08-Oct-2015453
test_-a_-b_-u.cpp.gcov08-Oct-20154.6K
test_-a_-b_-u.h.gcov08-Oct-2015459
test_-b.output08-Oct-2015251
test_-b_-f.output08-Oct-20151K
test_-f.output08-Oct-2015664
test_exit_block_arcs.gcda08-Oct-2015124
test_exit_block_arcs.gcno08-Oct-2015216
test_file_checksum_fail.gcda08-Oct-2015825
test_func_checksum_fail.gcda08-Oct-2015825
test_long_file_names.output08-Oct-2015276
test_long_paths.output08-Oct-2015334
test_missing.cpp.gcov08-Oct-20151.9K
test_missing.h.gcov08-Oct-2015202
test_missing.output08-Oct-2015244
test_no_gcda.cpp.gcov08-Oct-20152.3K
test_no_gcda.h.gcov08-Oct-2015219
test_no_gcda.output08-Oct-2015153
test_no_options.cpp.gcov08-Oct-20152.3K
test_no_options.h.gcov08-Oct-2015227
test_no_options.output08-Oct-2015156
test_no_output.output08-Oct-201590
test_no_preserve_paths.output08-Oct-2015244
test_objdir.cpp.gcov08-Oct-20152.3K
test_objdir.h.gcov08-Oct-2015241
test_paths.cpp.gcov08-Oct-20152.4K
test_paths.gcda08-Oct-2015904
test_paths.gcno08-Oct-20154.4K
test_paths.h.gcov08-Oct-2015260
test_preserve_paths.output08-Oct-2015284
test_read_fail.gcno08-Oct-201571
universal-binary08-Oct-2015960
universal-binary.proftext08-Oct-201515

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