diff options
| author | Max Moroz <mmoroz@chromium.org> | 2018-01-31 17:37:21 +0000 |
|---|---|---|
| committer | Max Moroz <mmoroz@chromium.org> | 2018-01-31 17:37:21 +0000 |
| commit | 790baeed37073052cd1788170ed495a40ac4d646 (patch) | |
| tree | 930d331b2b866fb40bd2951a7d06ed51bb364395 /llvm/test/tools/llvm-cov/showLineExecutionCounts.cpp | |
| parent | be58a220e96d5e7feabeed7211e75da1af0bc387 (diff) | |
| download | bcm5719-llvm-790baeed37073052cd1788170ed495a40ac4d646.tar.gz bcm5719-llvm-790baeed37073052cd1788170ed495a40ac4d646.zip | |
[llvm-cov] Improvements for summary report generated in HTML format.
Summary:
This commit adds the following changes:
1) coverage numbers are aligned to the left and padded with spaces in order to
provide better readability for percentage values, e.g.:
```
file1 | 89.13% (123 / 2323) | 100.00% (55 / 55) | 9.33% (14545 / 234234)
file_asda | 1.78% ( 23 / 4323) | 32.31% (555 / 6555) | 67.89% (1545 / 2234)
fileXXX | 100.00% (12323 / 12323) | 100.00% (555 / 555) | 100.00% (12345 / 12345)
```
2) added "hover" attribute to CSS for highlighting table row under mouse cursor
see screenshot attached to the phabricator review page
{F5764813}
3) table title row and "totals" row now use bold text
Reviewers: vsk, morehouse
Reviewed By: vsk
Subscribers: kcc, llvm-commits
Differential Revision: https://reviews.llvm.org/D42093
llvm-svn: 323892
Diffstat (limited to 'llvm/test/tools/llvm-cov/showLineExecutionCounts.cpp')
| -rw-r--r-- | llvm/test/tools/llvm-cov/showLineExecutionCounts.cpp | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/llvm/test/tools/llvm-cov/showLineExecutionCounts.cpp b/llvm/test/tools/llvm-cov/showLineExecutionCounts.cpp index c18afedf034..7fc36a7a911 100644 --- a/llvm/test/tools/llvm-cov/showLineExecutionCounts.cpp +++ b/llvm/test/tools/llvm-cov/showLineExecutionCounts.cpp @@ -62,10 +62,10 @@ int main() { // TEXT: [[@LINE]]| 161|int main( // // RUN: FileCheck -check-prefix HTML-INDEX -input-file %t.html.dir/index.html %s // HTML-INDEX-LABEL: <table> -// HTML-INDEX: <td class='column-entry-left'>Filename</td> -// HTML-INDEX: <td class='column-entry'>Function Coverage</td> -// HTML-INDEX: <td class='column-entry'>Line Coverage</td> -// HTML-INDEX: <td class='column-entry'>Region Coverage</td> +// HTML-INDEX: <td class='column-entry-bold'>Filename</td> +// HTML-INDEX: <td class='column-entry-bold'>Function Coverage</td> +// HTML-INDEX: <td class='column-entry-bold'>Line Coverage</td> +// HTML-INDEX: <td class='column-entry-bold'>Region Coverage</td> // HTML-INDEX: <a href='coverage{{.*}}showLineExecutionCounts.cpp.html'{{.*}}showLineExecutionCounts.cpp</a> // HTML-INDEX: <td class='column-entry-green'> // HTML-INDEX: 100.00% (1/1) @@ -73,4 +73,5 @@ int main() { // TEXT: [[@LINE]]| 161|int main( // HTML-INDEX: 90.00% (18/20) // HTML-INDEX: <td class='column-entry-red'> // HTML-INDEX: 72.73% (8/11) -// HTML-INDEX: TOTALS +// HTML-INDEX: <tr class='light-row-bold'> +// HTML-INDEX: Totals |

