Performance improvement

Begin to address #1086
Brings test from 2m51.072s to 1m15.661s
This commit is contained in:
Neal Coombes 2017-11-15 14:43:43 -06:00
parent 61e29b5630
commit b9339333df
1 changed files with 7 additions and 0 deletions

View File

@ -72,6 +72,13 @@ namespace Catch {
bool negated = isFalseTest( m_assertionInfo.resultDisposition );
bool result = expr.getResult() != negated;
if(result && !getCurrentContext().getConfig()->includeSuccessfulResults())
{
getCurrentContext().getResultCapture()->assertionRun();
getCurrentContext().getResultCapture()->assertionPassed();
return;
}
handle( result ? ResultWas::Ok : ResultWas::ExpressionFailed, &expr, negated );
}
void AssertionHandler::handle( ResultWas::OfType resultType ) {