mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
coding standards, h512 node id, mute warnings for clang builds. attempt inherited constructor fix for windows.
This commit is contained in:
parent
94c1a961d9
commit
96ebead6aa
@ -21,4 +21,8 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#define BOOST_TEST_MODULE EthereumTests
|
#define BOOST_TEST_MODULE EthereumTests
|
||||||
|
#pragma GCC diagnostic push
|
||||||
|
#pragma GCC diagnostic ignored "-Wunused-parameter"
|
||||||
#include <boost/test/included/unit_test.hpp>
|
#include <boost/test/included/unit_test.hpp>
|
||||||
|
#pragma warning(pop)
|
||||||
|
#pragma GCC diagnostic pop
|
||||||
|
6
net.cpp
6
net.cpp
@ -171,6 +171,12 @@ BOOST_AUTO_TEST_CASE(test_findnode_neighbors)
|
|||||||
// into the same list of nearest nodes.
|
// 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)
|
BOOST_AUTO_TEST_CASE(kademlia)
|
||||||
{
|
{
|
||||||
// Not yet a 'real' test.
|
// Not yet a 'real' test.
|
||||||
|
Loading…
Reference in New Issue
Block a user