Changed --cutoff to --abort

This commit is contained in:
Phil Nash
2012-06-02 23:26:32 +01:00
parent 0f9c551d4d
commit 8d02b9306d
4 changed files with 14 additions and 14 deletions

View File

@@ -84,7 +84,7 @@ namespace Catch {
<< "\t-s, --success\n"
<< "\t-b, --break\n"
<< "\t-n, --name <name>\n"
<< "\t-c, --cutoff [#]\n\n"
<< "\t-a, --abort [#]\n\n"
<< "For more detail usage please see: https://github.com/philsquared/Catch/wiki/Command-line" << std::endl;
}
inline void showHelp( std::string exeName ) {

View File

@@ -162,7 +162,7 @@ namespace Catch {
config.setShowHelp( true );
}
if( Command cmd = parser.find( "-c", "--cutoff" ) ) {
if( Command cmd = parser.find( "-a", "--abort" ) ) {
if( cmd.argsCount() > 1 )
throw std::domain_error( cmd.name() + " only accepts 0-1 arguments" );
int threshold = 1;