This commit is contained in:
Derek Brown 2025-03-29 22:00:39 +00:00 committed by GitHub
commit 4a4cecc639
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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;