Author: Zixu Wang Date: 2022-05-04T10:40:25-07:00 New Revision: 5f841c71fc2cc77c92f526791cd7a938bcac69aa
URL: https://github.com/llvm/llvm-project/commit/5f841c71fc2cc77c92f526791cd7a938bcac69aa DIFF: https://github.com/llvm/llvm-project/commit/5f841c71fc2cc77c92f526791cd7a938bcac69aa.diff LOG: [NFC] Remove unfinished test case 4c262fee08b5383c96857d77eefe80d61c41d2b0 accidentally added local unfinished test case clang/test/Index/annotate-comments-enum-constant.c This patch removes it. Added: Modified: Removed: clang/test/Index/annotate-comments-enum-constant.c ################################################################################ diff --git a/clang/test/Index/annotate-comments-enum-constant.c b/clang/test/Index/annotate-comments-enum-constant.c deleted file mode 100644 index f86eaf4742d30..0000000000000 --- a/clang/test/Index/annotate-comments-enum-constant.c +++ /dev/null @@ -1,17 +0,0 @@ -// RUN: rm -rf %t -// RUN: mkdir %t -// RUN: c-index-test -test-load-source all -comments-xml-schema=%S/../../bindings/xml/comment-xml-schema.rng %s > %t/out -// RUN: FileCheck %s --dump-input always < %t/out - -enum { - /// Documentation for Foo - Foo, - Bar, // No documentation for Bar - /// Documentation for Baz - Baz, -}; -// CHECK: EnumConstantDecl=Foo:[[@LINE-5]]:3 (Definition) {{.*}} BriefComment=[Documentation for Foo] FullCommentAsHTML=[<p class="para-brief"> Documentation for Foo</p>] FullCommentAsXML=[<Variable file="{{[^"]+}}annotate-comments-enum-constant.c" line="[[@LINE-5]]" column="3"><Name>Foo</Name><USR>c:@Ea@Foo@Foo</USR><Declaration>Foo</Declaration><Abstract><Para> Documentation for Foo</Para></Abstract></Variable>] -// CHECK: EnumConstantDecl=Bar:[[@LINE-5]]:3 (Definition) -// CHECK-NOT: BriefComment=[Documentation for Foo] -// CHECK: EnumConstantDecl=Baz:[[@LINE-5]]:3 (Definition) {{.*}} BriefComment=[Documentation for Baz] FullCommentAsHTML=[<p class="para-brief"> Documentation for Baz</p>] FullCommentAsXML=[<Variable file="{{[^"]+}}annotate-comments-enum-constant.c" line="[[@LINE-5]]" column="3"><Name>Baz</Name><USR>c:@Ea@Foo@Baz</USR><Declaration>Baz</Declaration><Abstract><Para> Documentation for Baz</Para></Abstract></Variable>] - _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits