summaryrefslogtreecommitdiffstats
path: root/clang-tools-extra/test/clang-tidy/check_clang_tidy.cpp
diff options
context:
space:
mode:
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.cpp32
1 files changed, 0 insertions, 32 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
deleted file mode 100644
index 0e4c45d3950..00000000000
--- a/clang-tools-extra/test/clang-tidy/check_clang_tidy.cpp
+++ /dev/null
@@ -1,32 +0,0 @@
-// 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 {}; class D {}; class E {};}
-namespace b {
-#if defined(USING_A)
-using a::A;
-#elif defined(USING_B)
-using a::B;
-#elif defined(USING_C_D)
-using a::C;
-using a::D;
-#else
-using a::E;
-#endif
-}
-namespace 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-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