diff options
author | Vedant Kumar <vsk@apple.com> | 2016-09-08 00:56:48 +0000 |
---|---|---|
committer | Vedant Kumar <vsk@apple.com> | 2016-09-08 00:56:48 +0000 |
commit | 0053c0b679b516af48086346e38f6c87017a7ca5 (patch) | |
tree | 0d67b6548d8cecd9f877388cb6378494fac5646c /llvm/test/tools/llvm-cov/showProjectSummary.cpp | |
parent | fa754371831b1e75c7b39128b8d8cbfe6862ebd9 (diff) | |
download | bcm5719-llvm-0053c0b679b516af48086346e38f6c87017a7ca5.tar.gz bcm5719-llvm-0053c0b679b516af48086346e38f6c87017a7ca5.zip |
[llvm-cov] Use less space to describe source names
In r279628, we made SourceCoverageView list the binary associated with a
view and started adding labels (e.g "Source: foo" or "Function: bar") to
everything. Condense this information a bit to unclutter reports.
llvm-svn: 280896
Diffstat (limited to 'llvm/test/tools/llvm-cov/showProjectSummary.cpp')
-rw-r--r-- | llvm/test/tools/llvm-cov/showProjectSummary.cpp | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/llvm/test/tools/llvm-cov/showProjectSummary.cpp b/llvm/test/tools/llvm-cov/showProjectSummary.cpp index a2c1dee0d3f..b3329145743 100644 --- a/llvm/test/tools/llvm-cov/showProjectSummary.cpp +++ b/llvm/test/tools/llvm-cov/showProjectSummary.cpp @@ -36,11 +36,8 @@ int main(int argc, char ** argv) { // HTML: <span>Code Coverage Report</span> // HTML: <div class='created-time'> // HTML: <span>Created: -// HTML-FILE: <pre>Source: -// HTML-FILE: showProjectSummary.cpp</pre> -// HTML-FILE: <pre>Binary: -// HTML-FILE: showProjectSummary.covmapping</pre> -// HTML-FUNCTION: <pre>Function: main</pre> +// HTML-FILE: <pre>Source: {{.*}}showProjectSummary.cpp (Binary: showProjectSummary.covmapping)</pre> +// HTML-FUNCTION: <pre>main</pre> // HTML-UNCOVEREDLINE: <a href='#L8'>Go to first unexecuted line</a> // HTML-HEADER: <tr><td><span><pre>Line No.</pre></span></td> // HTML-HEADER: <td><span><pre>Count</pre></span></td> |