diff options
author | dim <dim@FreeBSD.org> | 2013-12-22 00:07:40 +0000 |
---|---|---|
committer | dim <dim@FreeBSD.org> | 2013-12-22 00:07:40 +0000 |
commit | 952eddef9aff85b1e92626e89baaf7a360e2ac85 (patch) | |
tree | df8df0b0067b381eab470a3b8f28d14a552a6340 /test/Index/Inputs | |
parent | ea266cad53e3d49771fa38103913d3ec7a166694 (diff) | |
download | FreeBSD-src-952eddef9aff85b1e92626e89baaf7a360e2ac85.zip FreeBSD-src-952eddef9aff85b1e92626e89baaf7a360e2ac85.tar.gz |
Vendor import of clang release_34 branch r197841 (effectively, 3.4 RC3):
https://llvm.org/svn/llvm-project/cfe/branches/release_34@197841
Diffstat (limited to 'test/Index/Inputs')
-rw-r--r-- | test/Index/Inputs/CommentXML/invalid-function-13.xml | 13 | ||||
-rw-r--r-- | test/Index/Inputs/CommentXML/valid-function-07.xml | 19 | ||||
-rw-r--r-- | test/Index/Inputs/empty.h | 0 | ||||
-rw-r--r-- | test/Index/Inputs/lit.local.cfg | 1 | ||||
-rw-r--r-- | test/Index/Inputs/preamble-with-error.h | 3 |
5 files changed, 32 insertions, 4 deletions
diff --git a/test/Index/Inputs/CommentXML/invalid-function-13.xml b/test/Index/Inputs/CommentXML/invalid-function-13.xml new file mode 100644 index 0000000..14cd31b --- /dev/null +++ b/test/Index/Inputs/CommentXML/invalid-function-13.xml @@ -0,0 +1,13 @@ +<?xml version="1.0" encoding="utf-8"?> +<Function> +<Name>aaa</Name> +<Abstract><Para>Aaa.</Para></Abstract> +<Parameters> + <Parameter> + <Name>x1</Name> + <IsVarArg /> + <Discussion><Para>Bbb</Para></Discussion> + </Parameter> +</Parameters> +</Function> + diff --git a/test/Index/Inputs/CommentXML/valid-function-07.xml b/test/Index/Inputs/CommentXML/valid-function-07.xml index 89b8a0c..b567e6b 100644 --- a/test/Index/Inputs/CommentXML/valid-function-07.xml +++ b/test/Index/Inputs/CommentXML/valid-function-07.xml @@ -20,11 +20,24 @@ <Direction isExplicit="1">in,out</Direction> <Discussion><Para>Ddd</Para></Discussion> </Parameter> + <Parameter> + <Name>x4</Name> + <IsVarArg /> + <Direction isExplicit="0">in</Direction> + <Discussion><Para>Eee</Para></Discussion> + </Parameter> </Parameters> -<ResultDiscussion><Para>Eee.</Para></ResultDiscussion> +<Exceptions> + <Para>Fff.</Para> + <Para>Ggg</Para> +</Exceptions> +<ResultDiscussion> + <Para>Hhh.</Para> + <Para>Iii</Para> +</ResultDiscussion> <Discussion> - <Para>Fff</Para> - <Verbatim xml:space="preserve" kind="verbatim">Ggg</Verbatim> + <Para>Jjj</Para> + <Verbatim xml:space="preserve" kind="verbatim">Kkk</Verbatim> </Discussion> </Function> diff --git a/test/Index/Inputs/empty.h b/test/Index/Inputs/empty.h new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/test/Index/Inputs/empty.h diff --git a/test/Index/Inputs/lit.local.cfg b/test/Index/Inputs/lit.local.cfg deleted file mode 100644 index e6f55ee..0000000 --- a/test/Index/Inputs/lit.local.cfg +++ /dev/null @@ -1 +0,0 @@ -config.suffixes = [] diff --git a/test/Index/Inputs/preamble-with-error.h b/test/Index/Inputs/preamble-with-error.h new file mode 100644 index 0000000..f840947 --- /dev/null +++ b/test/Index/Inputs/preamble-with-error.h @@ -0,0 +1,3 @@ +typedef int Int; +enum FFF +extern Int *const www; |