]> granicus.if.org Git - clang/commitdiff
Add a test that checks that the formatter doesn't discard '@' with ObjC1 set.
authorNico Weber <nicolasweber@gmx.de>
Mon, 7 Jan 2013 15:17:23 +0000 (15:17 +0000)
committerNico Weber <nicolasweber@gmx.de>
Mon, 7 Jan 2013 15:17:23 +0000 (15:17 +0000)
Also set ObjC1 in the formatter tests.

The only effect of this flag in the lexer is that '@' now gets turned into
tok::at instead of tok::unknown.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@171742 91177308-0d34-0410-b5e6-96231b3b80d8

unittests/Format/FormatTest.cpp

index 2d6a1426db49068449bfe4bf050d9d611605abb1..3a67e2dfa18a16dc5cad3ffdaf88785491b3b2ac 100644 (file)
@@ -29,6 +29,7 @@ protected:
     LangOptions LangOpts;
     LangOpts.CPlusPlus = 1;
     LangOpts.CPlusPlus11 = 1;
+    LangOpts.ObjC1 = 1;
     Lexer Lex(ID, Context.Sources.getBuffer(ID), Context.Sources, LangOpts);
     tooling::Replacements Replace = reformat(Style, Lex, Context.Sources,
                                              Ranges);
@@ -1020,5 +1021,10 @@ TEST_F(FormatTest, FormatForObjectiveCMethodDecls) {
           "outRange8:(NSRange) out_range8  outRange9:(NSRange) out_range9;"));
 }
 
+TEST_F(FormatTest, DoNotDropAt) {
+  verifyFormat("@interface");
+  verifyFormat("@dynamic");
+}
+
 } // end namespace tooling
 } // end namespace clang