diff options
author | Alexander Kornienko <alexfh@google.com> | 2014-11-20 15:05:32 +0000 |
---|---|---|
committer | Alexander Kornienko <alexfh@google.com> | 2014-11-20 15:05:32 +0000 |
commit | b1f871cdcb4776ccf46431625dfb8d57817ea52d (patch) | |
tree | b369758ab89c165bcc521a5896ff5e90432882ae /clang-tools-extra/test/clang-tidy/google-readability-namespace-comments.cpp | |
parent | a03161c6eee23631a11cf7978022cae6b56a5bcb (diff) | |
download | bcm5719-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/google-readability-namespace-comments.cpp')
-rw-r--r-- | clang-tools-extra/test/clang-tidy/google-readability-namespace-comments.cpp | 20 |
1 files changed, 17 insertions, 3 deletions
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. + + + + + +} +} |