diff options
author | Daniel Jasper <djasper@google.com> | 2015-12-21 13:40:49 +0000 |
---|---|---|
committer | Daniel Jasper <djasper@google.com> | 2015-12-21 13:40:49 +0000 |
commit | 32d75fa293d9db70ddf8a20797e625f152b1efb5 (patch) | |
tree | a7c599dbc918b4dd5b93cd827fc3a086d44bbf3f /clang/unittests/Format/SortIncludesTest.cpp | |
parent | 5da2f6cd03aa56411f7fcb0c481bdbd56d309acb (diff) | |
download | bcm5719-llvm-32d75fa293d9db70ddf8a20797e625f152b1efb5.tar.gz bcm5719-llvm-32d75fa293d9db70ddf8a20797e625f152b1efb5.zip |
clang-format: Only try to find the "main" include in the first block of
includes.
llvm-svn: 256153
Diffstat (limited to 'clang/unittests/Format/SortIncludesTest.cpp')
-rw-r--r-- | clang/unittests/Format/SortIncludesTest.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/clang/unittests/Format/SortIncludesTest.cpp b/clang/unittests/Format/SortIncludesTest.cpp index ce83091b715..d96227d13ee 100644 --- a/clang/unittests/Format/SortIncludesTest.cpp +++ b/clang/unittests/Format/SortIncludesTest.cpp @@ -191,6 +191,19 @@ TEST_F(SortIncludesTest, LeavesMainHeaderFirst) { "#include \"c.h\"\n" "#include \"b.h\"\n", "a.h")); + + // Only do this in the first #include block. + EXPECT_EQ("#include <a>\n" + "\n" + "#include \"b.h\"\n" + "#include \"c.h\"\n" + "#include \"llvm/a.h\"\n", + sort("#include <a>\n" + "\n" + "#include \"llvm/a.h\"\n" + "#include \"c.h\"\n" + "#include \"b.h\"\n", + "a.cc")); } TEST_F(SortIncludesTest, NegativePriorities) { |