summaryrefslogtreecommitdiffstats
path: root/clang-tools-extra/test/clang-tidy/check_clang_tidy.cpp
diff options
context:
space:
mode:
authorZinovy Nis <zinovy.nis@gmail.com>2018-10-09 05:40:03 +0000
committerZinovy Nis <zinovy.nis@gmail.com>2018-10-09 05:40:03 +0000
commit72a6b28b3cebf9a760a1b2e931cc894fc9d33def (patch)
tree0c9536881a0cdf7a07a857853717a3b8270b5a5a /clang-tools-extra/test/clang-tidy/check_clang_tidy.cpp
parentd46f580986360d5202c7d3b435021ae4951b6fbb (diff)
downloadbcm5719-llvm-72a6b28b3cebf9a760a1b2e931cc894fc9d33def.tar.gz
bcm5719-llvm-72a6b28b3cebf9a760a1b2e931cc894fc9d33def.zip
[clang-tidy] The patch extends the existing command line option -check-suffix
(with alias -check-suffixes) to accept multiple comma-separated FileCheck prefixes. Usage: // RUN: %check_clang_tidy -check-suffix=USING-C,USING-D %s misc-unused-using-decls %t -- -- ... or for the same: // RUN: %check_clang_tidy -check-suffixes=USING-C,USING-D %s misc-unused-using-decls %t -- -- ... Differential Revision: https://reviews.llvm.org/D52971 llvm-svn: 344015
Diffstat (limited to 'clang-tools-extra/test/clang-tidy/check_clang_tidy.cpp')
-rw-r--r--clang-tools-extra/test/clang-tidy/check_clang_tidy.cpp23
1 files changed, 17 insertions, 6 deletions
diff --git a/clang-tools-extra/test/clang-tidy/check_clang_tidy.cpp b/clang-tools-extra/test/clang-tidy/check_clang_tidy.cpp
index 5c1bf92eecd..0e4c45d3950 100644
--- a/clang-tools-extra/test/clang-tidy/check_clang_tidy.cpp
+++ b/clang-tools-extra/test/clang-tidy/check_clang_tidy.cpp
@@ -1,21 +1,32 @@
// RUN: %check_clang_tidy -check-suffix=USING-A %s misc-unused-using-decls %t -- -- -DUSING_A
// RUN: %check_clang_tidy -check-suffix=USING-B %s misc-unused-using-decls %t -- -- -DUSING_B
+// RUN: %check_clang_tidy -check-suffix=USING-C,USING-D %s misc-unused-using-decls %t -- -- -DUSING_C_D
+// RUN: %check_clang_tidy -check-suffixes=USING-C,USING-D %s misc-unused-using-decls %t -- -- -DUSING_C_D
// RUN: %check_clang_tidy %s misc-unused-using-decls %t
-namespace a {class A {}; class B {}; class C {}; }
+namespace a {class A {}; class B {}; class C {}; class D {}; class E {};}
namespace b {
#if defined(USING_A)
using a::A;
#elif defined(USING_B)
using a::B;
-#else
+#elif defined(USING_C_D)
using a::C;
+using a::D;
+#else
+using a::E;
#endif
}
namespace c {}
-// CHECK-MESSAGES-USING-A: :[[@LINE-8]]:10: warning: using decl 'A' {{.*}}
-// CHECK-MESSAGES-USING-B: :[[@LINE-7]]:10: warning: using decl 'B' {{.*}}
-// CHECK-MESSAGES: :[[@LINE-6]]:10: warning: using decl 'C' {{.*}}
+// CHECK-MESSAGES-USING-A: warning: using decl 'A' {{.*}}
+// CHECK-MESSAGES-USING-B: warning: using decl 'B' {{.*}}
+// CHECK-MESSAGES-USING-C: warning: using decl 'C' {{.*}}
+// CHECK-MESSAGES-USING-D: warning: using decl 'D' {{.*}}
+// CHECK-MESSAGES: warning: using decl 'E' {{.*}}
// CHECK-FIXES-USING-A-NOT: using a::A;$
// CHECK-FIXES-USING-B-NOT: using a::B;$
-// CHECK-FIXES-NOT: using a::C;$
+// CHECK-FIXES-USING-C-NOT: using a::C;$
+// CHECK-FIXES-USING-C-NOT: using a::D;$
+// CHECK-FIXES-USING-D-NOT: using a::C;$
+// CHECK-FIXES-USING-D-NOT: using a::D;$
+// CHECK-FIXES-NOT: using a::E;$
OpenPOWER on IntegriCloud