diff options
| author | Eric Fiselier <eric@efcs.ca> | 2019-07-29 21:38:56 +0000 |
|---|---|---|
| committer | Eric Fiselier <eric@efcs.ca> | 2019-07-29 21:38:56 +0000 |
| commit | a2a6f853662172a04bd3e2a444dd606d32b15bba (patch) | |
| tree | 53a427e68b7b02ab74b6a822ec03988b776712ce /llvm/utils | |
| parent | 9a5fbc816341ccb92ddde90dfb16f411c1cff9c8 (diff) | |
| download | bcm5719-llvm-a2a6f853662172a04bd3e2a444dd606d32b15bba.tar.gz bcm5719-llvm-a2a6f853662172a04bd3e2a444dd606d32b15bba.zip | |
[clang-tidy]: Google: new check 'google-upgrade-googletest-case'
Introduce a new check to upgrade user code based on API changes in Googletest.
The check finds uses of old Googletest APIs with "case" in their name and replaces them with the new APIs named with "suite".
Patch by Alex Strelnikov (strel@google.com)
Reviewed as D62977.
llvm-svn: 367263
Diffstat (limited to 'llvm/utils')
| -rw-r--r-- | llvm/utils/gn/secondary/clang-tools-extra/clang-tidy/google/BUILD.gn | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/utils/gn/secondary/clang-tools-extra/clang-tidy/google/BUILD.gn b/llvm/utils/gn/secondary/clang-tools-extra/clang-tidy/google/BUILD.gn index 2efa42a124e..204a25c0eb6 100644 --- a/llvm/utils/gn/secondary/clang-tools-extra/clang-tidy/google/BUILD.gn +++ b/llvm/utils/gn/secondary/clang-tools-extra/clang-tidy/google/BUILD.gn @@ -28,6 +28,7 @@ static_library("google") { "OverloadedUnaryAndCheck.cpp", "TodoCommentCheck.cpp", "UnnamedNamespaceInHeaderCheck.cpp", + "UpgradeGoogletestCaseCheck.cpp", "UsingNamespaceDirectiveCheck.cpp", ] } |

