From c04591e83a0b668408cf2342a3c32338f8fa511a Mon Sep 17 00:00:00 2001 From: Wesley Shillingford Date: Tue, 11 Jun 2019 15:14:04 +0100 Subject: [PATCH] Increase deadline to account for slowness from valgrind (#2073) --- nano/rpc_test/rpc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nano/rpc_test/rpc.cpp b/nano/rpc_test/rpc.cpp index 4ab87e2860..abc93bd77d 100644 --- a/nano/rpc_test/rpc.cpp +++ b/nano/rpc_test/rpc.cpp @@ -6425,7 +6425,7 @@ TEST (rpc, simultaneous_calls) promise.get_future ().wait (); - system.deadline_set (10s); + system.deadline_set (60s); while (std::any_of (test_responses.begin (), test_responses.end (), [](const auto & test_response) { return test_response->status == 0; })) { ASSERT_NO_ERROR (system.poll ());