TestSuite: Improved output formatting on MS Windows.
For some reason, this OS needs a few more newlines output than other OSes.
This commit is contained in:
parent
0bb968543b
commit
3e834ebb65
1 changed files with 6 additions and 0 deletions
|
@ -46,6 +46,9 @@ void fgCompilerOutputter::printFailureDetail(CppUnit::TestFailure *failure)
|
|||
vector<TestIOCapt>::iterator test_iter;
|
||||
|
||||
// Initial separator.
|
||||
#ifdef _WIN32
|
||||
fg_stream << endl;
|
||||
#endif
|
||||
fg_stream << string(WIDTH_DIVIDER, '=') << endl;
|
||||
|
||||
// Test info.
|
||||
|
@ -128,6 +131,9 @@ void fgCompilerOutputter::printIOStreamMessages(string heading, string messages,
|
|||
void fgCompilerOutputter::printSuiteStats()
|
||||
{
|
||||
// A divider.
|
||||
#ifdef _WIN32
|
||||
fg_stream << endl;
|
||||
#endif
|
||||
fg_stream << string(WIDTH_DIVIDER, '-') << endl;
|
||||
|
||||
// Timing and test count line.
|
||||
|
|
Loading…
Reference in a new issue