aboutsummaryrefslogtreecommitdiff
path: root/clang/unittests/Format/SortIncludesTest.cpp
diff options
context:
space:
mode:
authorDaniel Jasper <djasper@google.com>2015-12-21 13:40:49 +0000
committerDaniel Jasper <djasper@google.com>2015-12-21 13:40:49 +0000
commit32d75fa293d9db70ddf8a20797e625f152b1efb5 (patch)
treea7c599dbc918b4dd5b93cd827fc3a086d44bbf3f /clang/unittests/Format/SortIncludesTest.cpp
parent5da2f6cd03aa56411f7fcb0c481bdbd56d309acb (diff)
downloadllvm-32d75fa293d9db70ddf8a20797e625f152b1efb5.zip
llvm-32d75fa293d9db70ddf8a20797e625f152b1efb5.tar.gz
llvm-32d75fa293d9db70ddf8a20797e625f152b1efb5.tar.bz2
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.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/clang/unittests/Format/SortIncludesTest.cpp b/clang/unittests/Format/SortIncludesTest.cpp
index ce83091..d96227d 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) {