Browse Source

Merge pull request #2749 from CJentzsch/disableNetworktests

compile fix, missing include
cl-refactor
Gav Wood 10 years ago
parent
commit
bdd1eb6015
  1. 1
      test/libwhisper/whisperDB.cpp
  2. 3
      test/libwhisper/whisperTopic.cpp

1
test/libwhisper/whisperDB.cpp

@ -24,6 +24,7 @@ along with cpp-ethereum. If not, see <http://www.gnu.org/licenses/>.
#include <libp2p/Host.h>
#include <libwhisper/WhisperDB.h>
#include <libwhisper/WhisperHost.h>
#include <test/TestHelper.h>
using namespace std;
using namespace dev;

3
test/libwhisper/whisperTopic.cpp

@ -389,6 +389,9 @@ BOOST_AUTO_TEST_CASE(topicAdvertising)
BOOST_AUTO_TEST_CASE(selfAddressed)
{
if (test::Options::get().nonetwork)
return;
VerbosityHolder setTemporaryLevel(10);
cnote << "Testing self-addressed messaging with bloom filter matching...";

Loading…
Cancel
Save