diff options
author | MarcoFalke <falke.marco@gmail.com> | 2019-08-02 17:06:37 -0400 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2019-11-04 10:42:33 -0500 |
commit | fa2c44c3ccc3e7a54e2afc862addd555d5a6e51b (patch) | |
tree | 25dcc1cf23640475cff8321843dba35499436e5c /src/noui.h | |
parent | fa1936f57bbf5aebb1f8fc18701441d79219d443 (diff) |
test: Add ASSERT_DEBUG_LOG to unit test framework
Diffstat (limited to 'src/noui.h')
-rw-r--r-- | src/noui.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/noui.h b/src/noui.h index 854aeeacca..621e9c2798 100644 --- a/src/noui.h +++ b/src/noui.h @@ -17,10 +17,10 @@ void noui_InitMessage(const std::string& message); /** Connect all bitcoind signal handlers */ void noui_connect(); -/** Suppress all bitcoind signal handlers. Used to suppress output during test runs that produce expected errors */ -void noui_suppress(); +/** Redirect all bitcoind signal handlers to LogPrintf. Used to check or suppress output during test runs that produce expected errors */ +void noui_test_redirect(); -/** Reconnects the regular Non-GUI handlers after having used noui_suppress */ +/** Reconnects the regular Non-GUI handlers after having used noui_test_redirect */ void noui_reconnect(); #endif // BITCOIN_NOUI_H |