[fix] log level change. compilation: dns, tests

old unbound #warning does not block compilation
unit tests build fine. Even though the RPC/P2P network type is required again
This commit is contained in:
rfree2monero 2015-04-10 16:13:57 +02:00 committed by rfree2
parent 277a207b2f
commit 32c19c6c3d
No known key found for this signature in database
GPG key ID: D2AD548062A8E558
9 changed files with 17 additions and 8 deletions

View file

@ -186,6 +186,11 @@ namespace
class net_load_test_clt : public ::testing::Test
{
public:
net_load_test_clt()
: m_tcp_server(epee::net_utils::e_connection_type_RPC) // RPC disables network limit for unit tests
{
}
protected:
virtual void SetUp()
{
@ -237,7 +242,7 @@ namespace
{
// Stop server
test_levin_commands_handler commands_handler;
test_tcp_server tcp_server;
test_tcp_server tcp_server(epee::net_utils::e_connection_type_NET);
tcp_server.get_config_object().m_pcommands_handler = &commands_handler;
tcp_server.get_config_object().m_invoke_timeout = CONNECTION_TIMEOUT;