mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
[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:
parent
277a207b2f
commit
32c19c6c3d
9 changed files with 17 additions and 8 deletions
|
@ -34,6 +34,7 @@
|
|||
|
||||
#include "cryptonote_core/cryptonote_basic_impl.h"
|
||||
#include "cryptonote_core/verification_context.h"
|
||||
#include "cryptonote_core/blockchain_storage.h"
|
||||
#include <unordered_map>
|
||||
|
||||
namespace tests
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
|
@ -223,7 +223,7 @@ int main(int argc, char** argv)
|
|||
|
||||
size_t thread_count = (std::max)(min_thread_count, std::thread::hardware_concurrency() / 2);
|
||||
|
||||
test_tcp_server tcp_server;
|
||||
test_tcp_server tcp_server(epee::net_utils::e_connection_type_RPC);
|
||||
if (!tcp_server.init_server(srv_port, "127.0.0.1"))
|
||||
return 1;
|
||||
|
||||
|
|
|
@ -85,7 +85,7 @@ namespace
|
|||
|
||||
TEST(boosted_tcp_server, worker_threads_are_exception_resistant)
|
||||
{
|
||||
test_tcp_server srv;
|
||||
test_tcp_server srv(epee::net_utils::e_connection_type_RPC); // RPC disables network limit for unit tests
|
||||
ASSERT_TRUE(srv.init_server(test_server_port, test_server_host));
|
||||
|
||||
std::mutex mtx;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue