no newline after output flags

This commit is contained in:
jez 2007-11-03 01:13:04 +00:00
parent e14a24c4ce
commit a697193623

View file

@ -13,22 +13,21 @@ void TextTestResult::addError (Test *test, CppUnitException *e)
{
TestResult::addError (test, e);
if(verbose_)
cerr << "E" << endl;
cerr << "E";
}
void TextTestResult::addFailure (Test *test, CppUnitException *e)
{
TestResult::addFailure (test, e);
if(verbose_)
cerr << "F" << endl;
cerr << "F";
}
void TextTestResult::addSkip (Test *test, CppUnitException *e)
{
TestResult::addSkip (test, e);
if(verbose_)
cerr << "S" << endl;
cerr << "S";
}
void TextTestResult::startTest (Test *test)