diff options
author | Haojian Wu <hokein@google.com> | 2017-10-26 08:23:20 +0000 |
---|---|---|
committer | Haojian Wu <hokein@google.com> | 2017-10-26 08:23:20 +0000 |
commit | abcd64ccbf3357598f792f97f039d1685f42d6e7 (patch) | |
tree | 41551e56683d229552834f29c604aaf2d86516dd /clang-tools-extra/unittests/clang-tidy/ObjCModuleTest.cpp | |
parent | 37d57dac63539e8f402db96f9053b7fa7205c8e8 (diff) | |
download | llvm-abcd64ccbf3357598f792f97f039d1685f42d6e7.zip llvm-abcd64ccbf3357598f792f97f039d1685f42d6e7.tar.gz llvm-abcd64ccbf3357598f792f97f039d1685f42d6e7.tar.bz2 |
[clang-tidy ObjC] [1/3] New module `objc` for Objective-C checks
Summary:
This is part 1 of 3 of a series of changes to improve Objective-C
linting in clang-tidy.
This introduces a new clang-tidy module, `objc`, specifically for
Objective-C / Objective-C++ checks.
The module is currently empty; D39142 adds the first check.
Test Plan: `ninja check-clang-tools`
Patch by Ben Hamilton!
Reviewers: hokein, alexfh
Reviewed By: hokein
Subscribers: Wizard, mgorny
Differential Revision: https://reviews.llvm.org/D39188
llvm-svn: 316643
Diffstat (limited to 'clang-tools-extra/unittests/clang-tidy/ObjCModuleTest.cpp')
-rw-r--r-- | clang-tools-extra/unittests/clang-tidy/ObjCModuleTest.cpp | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/clang-tools-extra/unittests/clang-tidy/ObjCModuleTest.cpp b/clang-tools-extra/unittests/clang-tidy/ObjCModuleTest.cpp new file mode 100644 index 0000000..c50480a --- /dev/null +++ b/clang-tools-extra/unittests/clang-tidy/ObjCModuleTest.cpp @@ -0,0 +1,21 @@ +//===---- ObjCModuleTest.cpp - clang-tidy ---------------------------------===// +// +// The LLVM Compiler Infrastructure +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// + +#include "ClangTidyTest.h" +#include "gtest/gtest.h" + +namespace clang { +namespace tidy { +namespace test { + +// TODO(D39142) Add unit tests for the ObjC module here once a check lands. + +} // namespace test +} // namespace tidy +} // namespace clang |