diff options
| author | Baptiste Lepilleur <gaiacrtn@free.fr> | 2001-10-06 11:03:30 +0000 |
|---|---|---|
| committer | Baptiste Lepilleur <gaiacrtn@free.fr> | 2001-10-06 11:03:30 +0000 |
| commit | 8ac4da778cb226fb00b413a047ad3480f4d2ae5a (patch) | |
| tree | 1c239ed54fb94b0ba2c329e7d7e177de4219d4b7 /src/cppunit/TextTestRunner.cpp | |
| parent | 4c6c7e6474bef34c4bed0d3eb9889012319c938f (diff) | |
| download | cppunit-8ac4da778cb226fb00b413a047ad3480f4d2ae5a.tar.gz | |
Include/cppunit/CompilerTestResultOutputter.
include/cppunit/CompilerTestResultOutputter.h :
* src/cppunit/CompilerTestResultOutputter.cpp : added. Output result
in a compiler compatible format.
* src/cppunit/CppUnit.dsp :
* include/cppunit/MakeFile.am :
* src/cppunit/MakeFile.am : added CompilerTestResultOutputter.cpp
and CompilerTestResultOutputter.h.
* examples/cppunittest/CppUnitTestMain.cpp : if -selftest is specified
on the command line, no standard test result are printed, but compiler
compatible result at printed.
* examples/cppunittest/CppUnitTestMain.dsp : added post-build step to
run the test suite with -selftest.
* NEWS : updated.
* src/cppunit/TextTestRunner.cpp : skip a line after printing
progress.
Diffstat (limited to 'src/cppunit/TextTestRunner.cpp')
| -rw-r--r-- | src/cppunit/TextTestRunner.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/cppunit/TextTestRunner.cpp b/src/cppunit/TextTestRunner.cpp index 7f2bc37..8b4da15 100644 --- a/src/cppunit/TextTestRunner.cpp +++ b/src/cppunit/TextTestRunner.cpp @@ -96,6 +96,7 @@ TextTestRunner::wait( bool doWait ) void TextTestRunner::printResult( bool doPrintResult ) { + std::cout << std::endl; if ( doPrintResult ) std::cout << *m_result << std::endl; } |
