Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions cxxtest/ErrorFormatter.h
Original file line number Diff line number Diff line change
Expand Up @@ -84,12 +84,10 @@ class ErrorFormatter : public TestListener {
if (tracker().testSkipped()) {
(*_o) << "s";
_o->flush();
fflush(stdout);
_dotting = true;
} else if (!tracker().testFailed()) {
(*_o) << ".";
_o->flush();
fflush(stdout);
_dotting = true;
}
}
Expand Down
8 changes: 5 additions & 3 deletions cxxtest/TestMain.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,11 @@
#include <cxxtest/TestTracker.h>
#include <cxxtest/Flags.h>

#ifndef _CXXTEST_HAVE_STD
# define _CXXTEST_HAVE_STD
#endif // _CXXTEST_HAVE_STD

#include <cxxtest/StdValueTraits.h>



#if defined(_CXXTEST_HAVE_STD)
#ifdef _CXXTEST_OLD_STD
# include <iostream.h>
Expand All @@ -30,6 +29,7 @@
# include <cstring>
#endif // _CXXTEST_OLD_STD


namespace CxxTest {

inline void print_help(const char* name) {
Expand All @@ -40,6 +40,8 @@ inline void print_help(const char* name) {
CXXTEST_STD(cerr) << name << " --help-tests" << CXXTEST_STD(endl);
CXXTEST_STD(cerr) << name << " -v Enable tracing output." << CXXTEST_STD(endl);
}
#else
namespace CxxTest {
#endif


Expand Down