mirror of
https://github.com/google/googletest.git
synced 2025-04-04 21:15:03 +00:00
Merge 7754b4042f
into 52204f78f9
This commit is contained in:
commit
4a4cecc639
1 changed files with 5 additions and 2 deletions
|
@ -653,14 +653,17 @@ class ParameterizedTestSuiteInfo : public ParameterizedTestSuiteInfoBase {
|
|||
int line;
|
||||
};
|
||||
typedef ::std::vector<InstantiationInfo> InstantiationContainer;
|
||||
|
||||
|
||||
static bool IsValidParamName(const std::string& name) {
|
||||
static constexpr validParamChars = "_-:/";
|
||||
|
||||
// Check for empty string
|
||||
if (name.empty()) return false;
|
||||
|
||||
// Check for invalid characters
|
||||
for (std::string::size_type index = 0; index < name.size(); ++index) {
|
||||
if (!IsAlNum(name[index]) && name[index] != '_') return false;
|
||||
if (!isalnum(name[index]) && validParamChars.find(name[index]) == std::string::npos)
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
|
|
Loading…
Add table
Reference in a new issue