Browse Source

Suppress output when running unit tests.

This does two things:
1) Now does not output to debug.log if -printtodebugger flag is passed
2) Unit tests set -printtodebugger so only test results are output to stdout

Note that -printtodebugger only actually prints to the debugger on Windows.
0.8
Gavin Andresen 12 years ago
parent
commit
4d51be1cf3
  1. 2
      src/test/test_bitcoin.cpp
  2. 2
      src/util.cpp

2
src/test/test_bitcoin.cpp

@ -13,7 +13,7 @@ extern void noui_connect(); @@ -13,7 +13,7 @@ extern void noui_connect();
struct TestingSetup {
TestingSetup() {
fPrintToConsole = true; // don't want to write to debug.log file
fPrintToDebugger = true; // don't want to write to debug.log file
noui_connect();
bitdb.MakeMock();
LoadBlockIndex(true);

2
src/util.cpp

@ -204,7 +204,7 @@ inline int OutputDebugStringF(const char* pszFormat, ...) @@ -204,7 +204,7 @@ inline int OutputDebugStringF(const char* pszFormat, ...)
ret = vprintf(pszFormat, arg_ptr);
va_end(arg_ptr);
}
else
else if (!fPrintToDebugger)
{
// print to debug.log
static FILE* fileout = NULL;

Loading…
Cancel
Save