Remove short flags from --list-tests and --list-tags

This commit is contained in:
Martin Hořeňovský
2022-01-02 21:19:22 +01:00
parent 0d1bdea69f
commit eeee4a49af
3 changed files with 26 additions and 15 deletions

View File

@@ -242,12 +242,6 @@ namespace Catch {
auto cli
= ExeName( config.processName )
| Help( config.showHelp )
| Opt( config.listTests )
["-l"]["--list-tests"]
( "list all/matching test cases" )
| Opt( config.listTags )
["-t"]["--list-tags"]
( "list all/matching tags" )
| Opt( config.showSuccessfulTests )
["-s"]["--success"]
( "include successful tests in output" )
@@ -296,6 +290,12 @@ namespace Catch {
| Opt( setVerbosity, "quiet|normal|high" )
["-v"]["--verbosity"]
( "set output verbosity" )
| Opt( config.listTests )
["--list-tests"]
( "list all/matching test cases" )
| Opt( config.listTags )
["--list-tags"]
( "list all/matching tags" )
| Opt( config.listReporters )
["--list-reporters"]
( "list all reporters" )