diff options
author | Vedant Kumar <vsk@apple.com> | 2016-09-15 06:44:48 +0000 |
---|---|---|
committer | Vedant Kumar <vsk@apple.com> | 2016-09-15 06:44:48 +0000 |
commit | ea1e97b94ccaa25cc71cb0900c3dfd3d00e18b43 (patch) | |
tree | 7f249db4faa4941a9d0bf6bb456bab744c535fa6 /llvm/test/tools/llvm-cov/showTemplateInstantiations.cpp | |
parent | 6582669aa9dd757c17110fd993b8acd8b320f0f0 (diff) | |
download | bcm5719-llvm-ea1e97b94ccaa25cc71cb0900c3dfd3d00e18b43.tar.gz bcm5719-llvm-ea1e97b94ccaa25cc71cb0900c3dfd3d00e18b43.zip |
[llvm-cov] Don't create 'jump to ...' links in nested views
Doing so is pointless, since the whole view is usually visible in a
small amount of space.
llvm-svn: 281588
Diffstat (limited to 'llvm/test/tools/llvm-cov/showTemplateInstantiations.cpp')
-rw-r--r-- | llvm/test/tools/llvm-cov/showTemplateInstantiations.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/llvm/test/tools/llvm-cov/showTemplateInstantiations.cpp b/llvm/test/tools/llvm-cov/showTemplateInstantiations.cpp index 40ac9d3ad88..38ad0cfa8c9 100644 --- a/llvm/test/tools/llvm-cov/showTemplateInstantiations.cpp +++ b/llvm/test/tools/llvm-cov/showTemplateInstantiations.cpp @@ -83,3 +83,7 @@ int main() { // ALL: [[@LINE]]| 1|int main() { // HTML-ALL: <td class='line-number'><a name='L[[@LINE-45]]'><pre>[[@LINE-45]]</pre></a></td><td class='uncovered-line'></td><td class='code'><pre>// after // HTML-FILTER-NOT: <td class='line-number'><a name='L[[@LINE-46]]'><pre>[[@LINE-46]]</pre></a></td><td class='uncovered-line'></td><td class='code'><pre>// after + +// RUN: FileCheck -check-prefix=HTML-JUMP -input-file=%t.html.dir/coverage/tmp/showTemplateInstantiations.cpp.html %s +// HTML-JUMP: <pre>Source (<a href='#L{{[0-9]+}}'>jump to first uncovered line</a>)</pre> +// HTML-JUMP-NOT: <pre>Source (<a href='#L{{[0-9]+}}'>jump to first uncovered line</a>)</pre> |