mirror of
https://github.com/gflags/gflags.git
synced 2025-04-04 13:05:03 +00:00
Convert dashes to underscores for unknown flags (#177)
This commit is contained in:
parent
cce68f0c9c
commit
14c0e93755
2 changed files with 19 additions and 1 deletions
|
@ -771,7 +771,12 @@ void FlagRegistry::RegisterFlag(CommandLineFlag* flag) {
|
|||
CommandLineFlag* FlagRegistry::FindFlagLocked(const char* name) {
|
||||
FlagConstIterator i = flags_.find(name);
|
||||
if (i == flags_.end()) {
|
||||
return NULL;
|
||||
// If the name has dashes in it, try again after replacing with
|
||||
// underscores.
|
||||
if (strchr(name, '-') == NULL) return NULL;
|
||||
string name_rep = name;
|
||||
std::replace(name_rep.begin(), name_rep.end(), '-', '_');
|
||||
return FindFlagLocked(name_rep.c_str());
|
||||
} else {
|
||||
return i->second;
|
||||
}
|
||||
|
|
|
@ -357,6 +357,19 @@ TEST(FlagFileTest, ReadFlagsFromString) {
|
|||
false,
|
||||
123,
|
||||
123.0);
|
||||
|
||||
// Test that flags can use dashes instead of underscores.
|
||||
TestFlagString(
|
||||
// Flag string
|
||||
"-test-string=initial\n"
|
||||
"--test-bool=false\n"
|
||||
"--test-int32=123\n"
|
||||
"--test-double=123.0\n",
|
||||
// Expected values
|
||||
"initial",
|
||||
false,
|
||||
123,
|
||||
123.0);
|
||||
}
|
||||
|
||||
// Tests the filename part of the flagfile
|
||||
|
|
Loading…
Add table
Reference in a new issue