diff options
author | MarcoFalke <falke.marco@gmail.com> | 2018-03-30 11:43:38 -0400 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2018-03-30 11:43:56 -0400 |
commit | 4490871ed7eb8de0b644ba8545789f2cc702434e (patch) | |
tree | 9ac75fd11d31c383fd16464791b9b70991706e52 /test | |
parent | be299c4a4725442f37a4dca27bcae31546d6d8dd (diff) | |
parent | f7683cba7b070b722a2e0641f4d1516112392ed6 (diff) |
Merge #12713: Track negated options in the option parser
f7683cba7b Track negated arguments in the argument paser. (Evan Klitzke)
4f872b2450 Add additional tests for GetBoolArg() (Evan Klitzke)
Pull request description:
This change explicitly enable tracking negated options in the option parser. A negated option is one passed with a `-no` prefix. For example, `-nofoo` is the negated form of `-foo`. Negated options were originally added in the 0.6 release.
The change here allows code to explicitly distinguish between cases like `-nofoo` and `-foo=0`, which was not possible previously. The option parser does not have any changed semantics as a result of this change, and existing code will parse options just as it did before.
The motivation for this change is to provide a way to disable options that are otherwise not boolean options. For example, the `-debuglogfile` option is normally interpreted as a string, where the value is the log file name. With this change a user can pass in `-nodebuglogfile` and the code can see that it was explicitly negated, and use that to disable the log file.
This change originally split out from #12689.
Tree-SHA512: cd5a7354eb03d2d402863c7b69e512cad382781d9b8f18c1ab104fc46d45a712530818d665203082da39572c8a42313c5be09306dc2a7227cdedb20ef7314823
Diffstat (limited to 'test')
0 files changed, 0 insertions, 0 deletions