summaryrefslogtreecommitdiffstats
path: root/clang-tools-extra/test/clang-tidy
diff options
context:
space:
mode:
authorAlexander Kornienko <alexfh@google.com>2014-11-20 15:05:32 +0000
committerAlexander Kornienko <alexfh@google.com>2014-11-20 15:05:32 +0000
commitb1f871cdcb4776ccf46431625dfb8d57817ea52d (patch)
treeb369758ab89c165bcc521a5896ff5e90432882ae /clang-tools-extra/test/clang-tidy
parenta03161c6eee23631a11cf7978022cae6b56a5bcb (diff)
downloadbcm5719-llvm-b1f871cdcb4776ccf46431625dfb8d57817ea52d.tar.gz
bcm5719-llvm-b1f871cdcb4776ccf46431625dfb8d57817ea52d.zip
[clang-tidy] Set google-readability-namespace-comments.ShortNamespaceLines to 10
This value is used in cpplint, so we'd better be consistent. llvm-svn: 222431
Diffstat (limited to 'clang-tools-extra/test/clang-tidy')
-rw-r--r--clang-tools-extra/test/clang-tidy/google-module.cpp2
-rw-r--r--clang-tools-extra/test/clang-tidy/google-readability-namespace-comments.cpp20
2 files changed, 18 insertions, 4 deletions
diff --git a/clang-tools-extra/test/clang-tidy/google-module.cpp b/clang-tools-extra/test/clang-tidy/google-module.cpp
index b8c5d6949d2..494ac48e176 100644
--- a/clang-tools-extra/test/clang-tidy/google-module.cpp
+++ b/clang-tools-extra/test/clang-tidy/google-module.cpp
@@ -5,6 +5,6 @@
// CHECK: {{- key: *google-readability-function-size.StatementThreshold}}
// CHECK-NEXT: {{value: *'800'}}
// CHECK: {{- key: *google-readability-namespace-comments.ShortNamespaceLines}}
-// CHECK-NEXT: {{value: *'1'}}
+// CHECK-NEXT: {{value: *'10'}}
// CHECK: {{- key: *google-readability-namespace-comments.SpacesBeforeComments}}
// CHECK-NEXT: {{value: *'2'}}
diff --git a/clang-tools-extra/test/clang-tidy/google-readability-namespace-comments.cpp b/clang-tools-extra/test/clang-tidy/google-readability-namespace-comments.cpp
index 001e607bad2..0a50b49d8d8 100644
--- a/clang-tools-extra/test/clang-tidy/google-readability-namespace-comments.cpp
+++ b/clang-tools-extra/test/clang-tidy/google-readability-namespace-comments.cpp
@@ -3,14 +3,28 @@
namespace n1 {
namespace n2 {
+
+
+
+
+
// CHECK-MESSAGES: :[[@LINE+4]]:2: warning: namespace 'n2' not terminated with a closing comment [google-readability-namespace-comments]
-// CHECK-MESSAGES: :[[@LINE-2]]:11: note: namespace 'n2' starts here
+// CHECK-MESSAGES: :[[@LINE-7]]:11: note: namespace 'n2' starts here
// CHECK-MESSAGES: :[[@LINE+3]]:2: warning: namespace 'n1' not terminated with
-// CHECK-MESSAGES: :[[@LINE-5]]:11: note: namespace 'n1' starts here
+// CHECK-MESSAGES: :[[@LINE-10]]:11: note: namespace 'n1' starts here
}
}
// CHECK-FIXES: } // namespace n2
// CHECK-FIXES: } // namespace n1
-namespace short1 { namespace short2 { } }
+namespace short1 {
+namespace short2 {
+// Namespaces covering 10 lines or fewer are exempt from this rule.
+
+
+
+
+
+}
+}
OpenPOWER on IntegriCloud