stdout retained for all sections

Fixed issue where stdout was dropped between sections
This commit is contained in:
Phil Nash 2011-12-28 10:23:32 +00:00
parent 458e5eec16
commit b13ad46532
6 changed files with 40 additions and 4 deletions

View file

@ -56,7 +56,7 @@ TEST_CASE( "selftest/main", "Runs all Catch self tests and checks their results"
{
runner.runMatching( "./failing/*" );
CHECK( runner.getSuccessCount() == 0 );
CHECK( runner.getFailureCount() == 62 );
CHECK( runner.getFailureCount() == 64 );
}
}
}