diff options
| author | Aaron Ballman <aaron@aaronballman.com> | 2015-08-28 19:27:19 +0000 |
|---|---|---|
| committer | Aaron Ballman <aaron@aaronballman.com> | 2015-08-28 19:27:19 +0000 |
| commit | 327e97bb37ec535f134b0b3e7ecbb9c181ad4f4c (patch) | |
| tree | 787f0b09c43bf1d18e7b891e8f6d33cd4bbc5956 /clang-tools-extra/test/clang-tidy/misc-undelegated-constructor-cxx98.cpp | |
| parent | ff7da34bc36d2859076876637ad2b04796cbb81c (diff) | |
| download | bcm5719-llvm-327e97bb37ec535f134b0b3e7ecbb9c181ad4f4c.tar.gz bcm5719-llvm-327e97bb37ec535f134b0b3e7ecbb9c181ad4f4c.zip | |
Disable clang-tidy misc checkers when not compiling in C++ mode. Many of the checkers do not require additional testing as the tests will not compile for other languages or modes, or the checkers would never match a valid construct.
llvm-svn: 246318
Diffstat (limited to 'clang-tools-extra/test/clang-tidy/misc-undelegated-constructor-cxx98.cpp')
| -rw-r--r-- | clang-tools-extra/test/clang-tidy/misc-undelegated-constructor-cxx98.cpp | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/clang-tools-extra/test/clang-tidy/misc-undelegated-constructor-cxx98.cpp b/clang-tools-extra/test/clang-tidy/misc-undelegated-constructor-cxx98.cpp new file mode 100644 index 00000000000..e614f22bf5c --- /dev/null +++ b/clang-tools-extra/test/clang-tidy/misc-undelegated-constructor-cxx98.cpp @@ -0,0 +1,23 @@ +// RUN: clang-tidy %s -checks=-*,misc-undelegated-constructor -- -std=c++98 | count 0
+
+// Note: this test expects no diagnostics, but FileCheck cannot handle that,
+// hence the use of | count 0.
+
+struct Ctor;
+Ctor foo();
+
+struct Ctor {
+ Ctor();
+ Ctor(int);
+ Ctor(int, int);
+ Ctor(Ctor *i) {
+ Ctor();
+ Ctor(0);
+ Ctor(1, 2);
+ foo();
+ }
+};
+
+Ctor::Ctor() {
+ Ctor(1);
+}
|

