diff options
Diffstat (limited to 'clang/unittests')
| -rw-r--r-- | clang/unittests/Format/FormatTest.cpp | 10 | 
1 files changed, 7 insertions, 3 deletions
diff --git a/clang/unittests/Format/FormatTest.cpp b/clang/unittests/Format/FormatTest.cpp index 5f44c5bb2b5..d7f1d0b4839 100644 --- a/clang/unittests/Format/FormatTest.cpp +++ b/clang/unittests/Format/FormatTest.cpp @@ -4516,8 +4516,9 @@ TEST_F(FormatTest, UnderstandsUsesOfStarAndAmp) {    verifyIndependentOfContext("f(b * /* confusing comment */ ++c);");    verifyFormat( -      "int *MyValues = {*A, // Operator detection might be confused by the '{'\n" -      "                 *BB // Operator detection might be confused by previous comment\n" +      "int *MyValues = {\n" +      "    *A, // Operator detection might be confused by the '{'\n" +      "    *BB // Operator detection might be confused by previous comment\n"        "};");    verifyIndependentOfContext("if (int *a = &b)"); @@ -5072,7 +5073,10 @@ TEST_F(FormatTest, LayoutCxx11ConstructorBraceInitializers) {        "                                 bbbbbbbbbbbbbbbbbbbb, bbbbb };",        ExtraSpaces);    verifyFormat("DoSomethingWithVector({} /* No data */);", ExtraSpaces); -  verifyFormat("DoSomethingWithVector({ {} /* No data */ }, { { 1, 2 } });", +  verifyFormat("DoSomethingWithVector({\n" +               "                        {} /* No data */\n" +               "                      },\n" +               "                      { { 1, 2 } });",                 ExtraSpaces);    verifyFormat(        "someFunction(OtherParam,\n"  | 

