Browse Source

add network flag

cl-refactor
CJentzsch 10 years ago
parent
commit
3169341b65
  1. 5
      test/TestHelper.cpp
  2. 1
      test/TestHelper.h

5
test/TestHelper.cpp

@ -754,6 +754,8 @@ Options::Options()
checkState = true;
else if (arg == "--wallet")
wallet = true;
else if (arg == "--network")
network = true;
else if (arg == "--all")
{
performance = true;
@ -761,7 +763,8 @@ Options::Options()
memory = true;
inputLimits = true;
bigData = true;
wallet= true;
wallet = true;
network = true;
}
else if (arg == "--singletest" && i + 1 < argc)
{

1
test/TestHelper.h

@ -223,6 +223,7 @@ public:
bool inputLimits = false;
bool bigData = false;
bool wallet = false;
bool network = false;
/// @}
/// Get reference to options

Loading…
Cancel
Save