diff options
-rw-r--r-- | boostTest.cpp | 4 | ||||
-rw-r--r-- | net.cpp | 6 |
2 files changed, 10 insertions, 0 deletions
diff --git a/boostTest.cpp b/boostTest.cpp index 7d89f853..cef3cc0a 100644 --- a/boostTest.cpp +++ b/boostTest.cpp @@ -21,4 +21,8 @@ */ #define BOOST_TEST_MODULE EthereumTests +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wunused-parameter" #include <boost/test/included/unit_test.hpp> +#pragma warning(pop) +#pragma GCC diagnostic pop @@ -171,6 +171,12 @@ BOOST_AUTO_TEST_CASE(test_findnode_neighbors) // into the same list of nearest nodes. } +BOOST_AUTO_TEST_CASE(test_windows_template) +{ + bi::udp::endpoint ep; + PingNode p(ep); +} + BOOST_AUTO_TEST_CASE(kademlia) { // Not yet a 'real' test. |