diff options
author | Krasimir Georgiev <krasimir@google.com> | 2017-06-04 19:27:02 +0000 |
---|---|---|
committer | Krasimir Georgiev <krasimir@google.com> | 2017-06-04 19:27:02 +0000 |
commit | 59ed77b813a58e6f81fca3896f61e967a4f5f495 (patch) | |
tree | 1170a895ab3c1139df1583750efae54dd1ee8711 /clang/unittests/Format/FormatTestComments.cpp | |
parent | c4bfef50f33b6939d9680da8d1389511dc28a7f4 (diff) | |
download | bcm5719-llvm-59ed77b813a58e6f81fca3896f61e967a4f5f495.tar.gz bcm5719-llvm-59ed77b813a58e6f81fca3896f61e967a4f5f495.zip |
[clang-format] Don't align too long broken trailing comments
Summary:
This patch fixes a bug where clang-format will align newly broken trailing
comments even if this will make them exceed the line limit. The bug was caused
by a combination of unsigned arithmetic overflow and an imprecise computation
of the length of broken comment lines.
Reviewers: djasper, alexfh
Reviewed By: alexfh
Subscribers: klimek
Differential Revision: https://reviews.llvm.org/D33830
llvm-svn: 304687
Diffstat (limited to 'clang/unittests/Format/FormatTestComments.cpp')
-rw-r--r-- | clang/unittests/Format/FormatTestComments.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/clang/unittests/Format/FormatTestComments.cpp b/clang/unittests/Format/FormatTestComments.cpp index a44a6845587..09ee4645f59 100644 --- a/clang/unittests/Format/FormatTestComments.cpp +++ b/clang/unittests/Format/FormatTestComments.cpp @@ -2170,6 +2170,15 @@ TEST_F(FormatTestComments, AlignTrailingComments) { "// long", getLLVMStyleWithColumns(15))); + // Don't align newly broken trailing comments if that would put them over the + // column limit. + EXPECT_EQ("int i, j; // line 1\n" + "int k; // line longg\n" + " // long", + format("int i, j; // line 1\n" + "int k; // line longg long", + getLLVMStyleWithColumns(20))); + // Align comment line sections aligned with the next token with the next // token. EXPECT_EQ("class A {\n" |