1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

[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
This commit is contained in:
Eric Fiselier 2019-07-29 21:38:56 +00:00
parent 12e32086fe
commit 118cb6c2ad

View File

@ -28,6 +28,7 @@ static_library("google") {
"OverloadedUnaryAndCheck.cpp",
"TodoCommentCheck.cpp",
"UnnamedNamespaceInHeaderCheck.cpp",
"UpgradeGoogletestCaseCheck.cpp",
"UsingNamespaceDirectiveCheck.cpp",
]
}