From 818083e7059180f38a4a294e80f851967e1588f8 Mon Sep 17 00:00:00 2001 From: Federico Bond Date: Fri, 3 Mar 2017 11:47:05 -0300 Subject: [PATCH 1/3] Replace deprecated BOOST_MESSAGE with BOOST_TEST_MESSAGE --- test/RPCSession.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/RPCSession.cpp b/test/RPCSession.cpp index be8774bcf..f8b364d1a 100644 --- a/test/RPCSession.cpp +++ b/test/RPCSession.cpp @@ -207,7 +207,7 @@ void RPCSession::personal_unlockAccount(string const& _address, string const& _p string RPCSession::personal_newAccount(string const& _password) { string addr = rpcCall("personal_newAccount", { quote(_password) }).asString(); - BOOST_MESSAGE("Created account " + addr); + BOOST_TEST_MESSAGE("Created account " + addr); return addr; } From 9409edb409c0bfe9e2d941c9939537d9e8b8335b Mon Sep 17 00:00:00 2001 From: Federico Bond Date: Fri, 3 Mar 2017 11:47:22 -0300 Subject: [PATCH 2/3] Add missing header for boost::noncopyable --- test/RPCSession.h | 1 + 1 file changed, 1 insertion(+) diff --git a/test/RPCSession.h b/test/RPCSession.h index 843036e14..0acd982fb 100644 --- a/test/RPCSession.h +++ b/test/RPCSession.h @@ -30,6 +30,7 @@ #include +#include #include #include From eb363166ae3701aa37ae611df8c1e59b96ad0d31 Mon Sep 17 00:00:00 2001 From: chriseth Date: Fri, 3 Mar 2017 18:30:36 +0100 Subject: [PATCH 3/3] Fix header. --- test/RPCSession.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/RPCSession.h b/test/RPCSession.h index 0acd982fb..b37cc3228 100644 --- a/test/RPCSession.h +++ b/test/RPCSession.h @@ -30,7 +30,7 @@ #include -#include +#include #include #include