Change bassert to always call assert

This commit is contained in:
Vinnie Falco
2014-02-06 11:38:39 -08:00
parent 864b20565b
commit eb5691e8fa
8 changed files with 58 additions and 3 deletions

View File

@@ -393,7 +393,7 @@ void UnitTests::runTests (TestList const& tests, int64 randomSeed)
void UnitTests::onFailure ()
{
// A failure occurred and the setting to assert on failures is turned on.
bassert (! m_assertOnFailure)
bassert (! m_assertOnFailure);
}
bool UnitTests::shouldAbortTests()