Allow -s to be used to show successful results in test harness

This commit is contained in:
Phil Nash 2010-11-11 07:30:44 +00:00
parent c435f4c42b
commit 5cf94a8043
1 changed files with 12 additions and 0 deletions

View File

@ -17,6 +17,10 @@
int main (int argc, char * const argv[])
{
using namespace Catch;
bool showAllResults = false;
if( argc > 1 && ( std::string( argv[1] ) == "-s" || std::string( argv[1] ) == "--success" ) )
showAllResults = true;
ReporterConfig reporterConfig( ReporterConfig::Include::SuccessfulResults );
BasicReporter reporter (reporterConfig );
@ -39,11 +43,19 @@ int main (int argc, char * const argv[])
std::cerr << "Some tests that should have succeeded failed:\n\n" << succeedingResults;
result = 1;
}
else if( showAllResults )
{
std::cout << succeedingResults << "\n\n";
}
if( failingResults.find( "succeeded" ) != std::string::npos )
{
std::cerr << "Some tests that should have failed succeeded:\n\n" << failingResults;
result = 1;
}
else if( showAllResults )
{
std::cout << failingResults << "\n\n";
}
if( result == 0 )
{