google / googletest

GoogleTest - Google Testing and Mocking Framework
https://google.github.io/googletest/
BSD 3-Clause "New" or "Revised" License
33.68k stars 9.98k forks source link

Add support for all help flag variants mentioned in the documentation #4563

Open codeinred opened 1 week ago

codeinred commented 1 week ago

The documentation specifies that '-h', '-?', and '/?' may be used, but the code failed to check for these flags. This commit fixes the behavior of the executable to match what is specified in the docs.

Excerpt from advanced.md:

To see a list of supported flags and their usage, please run your test program with the --help flag. You can also use -h, -?, or /? for short.

codeinred commented 1 week ago

See issue #4564