mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-22 21:36:11 +01:00
Added newlines to warn & info - and always output cout & cerr
This commit is contained in:
parent
c27e6dc838
commit
b87bff21cd
@ -195,10 +195,10 @@ namespace Catch
|
||||
m_config.stream() << " exception with message: '" << resultInfo.getMessage() << "'";
|
||||
break;
|
||||
case ResultWas::Info:
|
||||
m_config.stream() << "info: '" << resultInfo.getMessage() << "'";
|
||||
m_config.stream() << "info:\n'" << resultInfo.getMessage() << "'";
|
||||
break;
|
||||
case ResultWas::Warning:
|
||||
m_config.stream() << "warning: '" << resultInfo.getMessage() << "'";
|
||||
m_config.stream() << "warning:\n'" << resultInfo.getMessage() << "'";
|
||||
break;
|
||||
case ResultWas::ExplicitFailure:
|
||||
m_config.stream() << "failed with message: '" << resultInfo.getMessage() << "'";
|
||||
@ -223,8 +223,6 @@ namespace Catch
|
||||
const std::string& stdOut,
|
||||
const std::string& stdErr
|
||||
)
|
||||
{
|
||||
if( m_testSpan.emitted )
|
||||
{
|
||||
if( !stdOut.empty() )
|
||||
m_config.stream() << "[stdout: " << trim( stdOut ) << "]\n";
|
||||
@ -232,6 +230,8 @@ namespace Catch
|
||||
if( !stdErr.empty() )
|
||||
m_config.stream() << "[stderr: " << trim( stdErr ) << "]\n";
|
||||
|
||||
if( m_testSpan.emitted )
|
||||
{
|
||||
m_config.stream() << "[Finished: " << testInfo.getName() << " ";
|
||||
ReportCounts( succeeded, failed );
|
||||
m_config.stream() << "]" << std::endl;
|
||||
|
Loading…
Reference in New Issue
Block a user