mirror of
https://github.com/catchorg/Catch2.git
synced 2025-05-28 07:29:25 +00:00
Fixed #114 (no exit code on failure)
This commit is contained in:
parent
74d1d31997
commit
62b7039a7b
2 changed files with 3 additions and 3 deletions
|
@ -46,7 +46,7 @@ namespace Catch {
|
|||
std::vector<TestCaseFilters>::const_iterator itEnd = filterGroups.end();
|
||||
for(; it != itEnd; ++it ) {
|
||||
m_reporter->StartGroup( it->getName() );
|
||||
runTestsForGroup( context, *it );
|
||||
totals += runTestsForGroup( context, *it );
|
||||
if( context.aborting() )
|
||||
m_reporter->Aborted();
|
||||
m_reporter->EndGroup( it->getName(), totals );
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue