diff options
author | Vedant Kumar <vsk@apple.com> | 2016-06-28 16:12:24 +0000 |
---|---|---|
committer | Vedant Kumar <vsk@apple.com> | 2016-06-28 16:12:24 +0000 |
commit | 9cbad2c2b8ca3a5db8979f8233612a781b8eb7c5 (patch) | |
tree | d70144a8d080a512ed50f6c0e7fef8b0dc3a2171 /llvm/test/tools/llvm-cov/showLineExecutionCounts.cpp | |
parent | 64d8a029e9657538f7e89b932c0f20248ee0f23c (diff) | |
download | bcm5719-llvm-9cbad2c2b8ca3a5db8979f8233612a781b8eb7c5.tar.gz bcm5719-llvm-9cbad2c2b8ca3a5db8979f8233612a781b8eb7c5.zip |
[llvm-cov] Create an index of reports in -output-dir mode
This index lists the reports available in the 'coverage' sub-directory.
This will help navigate coverage output from large projects.
This commit factors the file creation code out of SourceCoverageView and
into CoveragePrinter.
llvm-svn: 274029
Diffstat (limited to 'llvm/test/tools/llvm-cov/showLineExecutionCounts.cpp')
-rw-r--r-- | llvm/test/tools/llvm-cov/showLineExecutionCounts.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/llvm/test/tools/llvm-cov/showLineExecutionCounts.cpp b/llvm/test/tools/llvm-cov/showLineExecutionCounts.cpp index dad15301e53..16814837576 100644 --- a/llvm/test/tools/llvm-cov/showLineExecutionCounts.cpp +++ b/llvm/test/tools/llvm-cov/showLineExecutionCounts.cpp @@ -34,3 +34,7 @@ int main() { // CHECK: 161| [[@LINE]]|int main( // RUN: llvm-cov show %S/Inputs/lineExecutionCounts.covmapping -output-dir %t.dir -instr-profile %t.profdata -filename-equivalence -name=main %s // RUN: FileCheck -check-prefixes=CHECK,WHOLE-FILE -input-file %t.dir/coverage/tmp/showLineExecutionCounts.cpp.txt %s // RUN: FileCheck -check-prefixes=CHECK,FILTER -input-file %t.dir/functions.txt %s +// +// Test index creation. +// RUN: FileCheck -check-prefix=INDEX -input-file %t.dir/index.txt %s +// INDEX: showLineExecutionCounts.cpp.txt |