Browse Source

Disable p2p tests.

cl-refactor
Gav Wood 9 years ago
parent
commit
8031d76b89
  1. 2
      test/TestHelper.cpp
  2. 2
      test/TestHelper.h

2
test/TestHelper.cpp

@ -767,6 +767,8 @@ Options::Options()
wallet = true;
else if (arg == "--nonetwork")
nonetwork = true;
else if (arg == "--network")
nonetwork = false;
else if (arg == "--nodag")
nodag = true;
else if (arg == "--all")

2
test/TestHelper.h

@ -224,7 +224,7 @@ public:
bool inputLimits = false;
bool bigData = false;
bool wallet = false;
bool nonetwork = false;
bool nonetwork = true;
bool nodag = true;
/// @}

Loading…
Cancel
Save