CppUnit: flush after writing test name

This commit is contained in:
Günter Obiltschnig 2020-02-08 19:45:34 +01:00
parent 137c6ad136
commit f399062da4

View File

@ -147,7 +147,7 @@ void TextTestResult::addFailure(Test* test, CppUnitException* e)
void TextTestResult::startTest(Test* test)
{
TestResult::startTest(test);
_ostr << "\n" << shortName(test->toString()) << ": ";
_ostr << "\n" << shortName(test->toString()) << ": " << std::flush;
}