From b2274d64ecb67f6c8bff2e66361844bebbcc3dab Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Fri, 25 Jan 2013 23:56:54 +0000 Subject: [PATCH] clang/test/Index/annotate-comments-typedef.m: Remove CommentXMLValid in CHECKs. Don't assume libxml2 here. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@173534 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Index/annotate-comments-typedef.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/Index/annotate-comments-typedef.m b/test/Index/annotate-comments-typedef.m index 0a87a7d8c3..2d73d123f2 100644 --- a/test/Index/annotate-comments-typedef.m +++ b/test/Index/annotate-comments-typedef.m @@ -17,7 +17,7 @@ typedef enum : NSUInteger { MyEnumBar, /**< value Bar */ MyEnumBaz, /**< value Baz */ } MyEnum; -// CHECK: TypedefDecl=MyEnum:[[@LINE-1]]:3 (Definition) FullCommentAsHTML=[

Documentation for MyEnum

] FullCommentAsXML=[<anonymous>c:@EA@MyEnumtypedef enum MyEnum MyEnum Documentation for MyEnum ] CommentXMLValid +// CHECK: TypedefDecl=MyEnum:[[@LINE-1]]:3 (Definition) FullCommentAsHTML=[

Documentation for MyEnum

] FullCommentAsXML=[<anonymous>c:@EA@MyEnumtypedef enum MyEnum MyEnum Documentation for MyEnum ] /** Documentation for E */ @@ -27,4 +27,4 @@ enum E { MyEnumBaz, /**< value Baz */ }; typedef enum E E_T; -// CHECK: TypedefDecl=E_T:[[@LINE-1]]:16 (Definition) FullCommentAsHTML=[

Documentation for E

] FullCommentAsXML=[Ec:@E@Etypedef enum E E_T Documentation for E ] CommentXMLValid +// CHECK: TypedefDecl=E_T:[[@LINE-1]]:16 (Definition) FullCommentAsHTML=[

Documentation for E

] FullCommentAsXML=[Ec:@E@Etypedef enum E E_T Documentation for E ] -- 2.40.0