Use -p to print suites from unit test main

This commit is contained in:
Vinnie Falco
2016-08-29 15:07:10 -04:00
parent 28cabc5e28
commit 59cb3ee098
2 changed files with 2 additions and 1 deletions

View File

@ -1,5 +1,6 @@
1.0.0-b12
* Use -p to print suites from unit test main.
* BEAST_EXPECTS to add a reason string to test failures
* Fix unit test runner to output all case names
* Update README for build requirements

View File

@ -90,7 +90,7 @@ int main(int ac, char const* av[])
po::options_description desc("Options");
desc.add_options()
("help,h", "Produce a help message")
("print,r", "Print the list of available test suites")
("print,p", "Print the list of available test suites")
("suites,s", po::value<string>(), "suites to run")
;