Update of /cvsroot/cppunit/cppunit/src/cppunit
In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv22101/src/cppunit
Modified Files:
TextTestProgressListener.cpp
Log Message:
Bug 1649369: Flush stdCOut after startTest() and addFailure(). Fix from the supplied flush patch.
Index: TextTestProgressListener.cpp
===================================================================
RCS file: /cvsroot/cppunit/cppunit/src/cppunit/TextTestProgressListener.cpp,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** TextTestProgressListener.cpp 21 Feb 2008 03:10:06 -0000 1.8
--- TextTestProgressListener.cpp 11 Oct 2008 02:50:28 -0000 1.9
***************
*** 21,24 ****
--- 21,25 ----
{
stdCOut() << ".";
+ stdCOut().flush();
}
***************
*** 28,31 ****
--- 29,33 ----
{
stdCOut() << ( failure.isError() ? "E" : "F" );
+ stdCOut().flush();
}
|