diff options
author | CJentzsch <jentzsch.software@gmail.com> | 2015-06-18 14:00:16 +0800 |
---|---|---|
committer | CJentzsch <jentzsch.software@gmail.com> | 2015-06-18 14:00:16 +0800 |
commit | e325f33856c8a94fa1fc5eaeab76cef774de7155 (patch) | |
tree | 49c2b02d6b221774cfed2c171656505563ffa852 | |
parent | 6c27ef73670185e5adf8f84c4bcfbf9ce860defd (diff) | |
download | dexon-solidity-e325f33856c8a94fa1fc5eaeab76cef774de7155.tar.gz dexon-solidity-e325f33856c8a94fa1fc5eaeab76cef774de7155.tar.zst dexon-solidity-e325f33856c8a94fa1fc5eaeab76cef774de7155.zip |
add network flag
-rw-r--r-- | TestHelper.cpp | 5 | ||||
-rw-r--r-- | TestHelper.h | 1 |
2 files changed, 5 insertions, 1 deletions
diff --git a/TestHelper.cpp b/TestHelper.cpp index 743b1627..4e1ad92b 100644 --- a/TestHelper.cpp +++ b/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) { diff --git a/TestHelper.h b/TestHelper.h index df33c00d..ab52a550 100644 --- a/TestHelper.h +++ b/TestHelper.h @@ -223,6 +223,7 @@ public: bool inputLimits = false; bool bigData = false; bool wallet = false; + bool network = false; /// @} /// Get reference to options |