From b65220212029a9b563a5d41d20314335618b563b Mon Sep 17 00:00:00 2001 From: Gav Wood Date: Wed, 5 Aug 2015 10:37:09 +0200 Subject: [PATCH] Avoid doing the deadline timer test. --- test/libp2p/net.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/libp2p/net.cpp b/test/libp2p/net.cpp index 7e3719c34..7ab8d00cc 100644 --- a/test/libp2p/net.cpp +++ b/test/libp2p/net.cpp @@ -339,6 +339,9 @@ BOOST_AUTO_TEST_SUITE(netTypes) BOOST_AUTO_TEST_CASE(deadlineTimer) { + if (test::Options::get().nonetwork) + return; + ba::io_service io; ba::deadline_timer t(io); bool start = false;