diff options
author | Daniel Jasper <djasper@google.com> | 2013-01-29 16:03:49 +0000 |
---|---|---|
committer | Daniel Jasper <djasper@google.com> | 2013-01-29 16:03:49 +0000 |
commit | f1579605adf03f94a2ddddc95c764737ead0efe5 (patch) | |
tree | c1c423cba1236b2e830d8b31e4a6958fa707bba6 /unittests/Format/FormatTest.cpp | |
parent | f40fb4beaa22b4e53cd8b5319836b361ebfa6c62 (diff) |
Allow all parameters on next line for function calls in Chrome.
The style guide only forbids this for function declarations. So,
now
someFunction(
aaaaaaaaaaaaaaaaaaaa, aaaaaaaaaaaaaaaaa, aaaaaaaaaaaa);
Is allowed in Chromium mode.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@173806 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests/Format/FormatTest.cpp')
-rw-r--r-- | unittests/Format/FormatTest.cpp | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/unittests/Format/FormatTest.cpp b/unittests/Format/FormatTest.cpp index f8402c06a9..219d73c04d 100644 --- a/unittests/Format/FormatTest.cpp +++ b/unittests/Format/FormatTest.cpp @@ -1051,10 +1051,15 @@ TEST_F(FormatTest, FormatsOneParameterPerLineIfNecessary) { " a);"); FormatStyle Style = getGoogleStyle(); - Style.AllowAllParametersOnNextLine = false; - verifyFormat("aaaaaaaaaaaaaaa(aaaaaaaaa,\n" + Style.AllowAllParametersOfDeclarationOnNextLine = false; + verifyFormat("void aaaaaaaaaa(aaaaaaaaa,\n" " aaaaaaaaa,\n" - " aaaaaaaaaaaaaaaaaaaaa).aaaaaaaaaaaaaaaaaa();", + " aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa);", + Style); + verifyFormat("void f() {\n" + " aaaaaaaaaaaaaaaaaaaaaaaa(\n" + " aaaaaaaaa, aaaaaaaaa, aaaaaaaaaaaaaaaaaaaaa).aaaaaaa();\n" + "}", Style); } |