mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Merge pull request #1854 from CJentzsch/optionalWalletTests
optional wallet blockChain tests, because it takes a while
This commit is contained in:
commit
021f20a640
@ -726,6 +726,8 @@ Options::Options()
|
||||
bigData = true;
|
||||
else if (arg == "--checkstate")
|
||||
checkState = true;
|
||||
else if (arg == "--wallet")
|
||||
wallet = true;
|
||||
else if (arg == "--all")
|
||||
{
|
||||
performance = true;
|
||||
@ -733,6 +735,7 @@ Options::Options()
|
||||
memory = true;
|
||||
inputLimits = true;
|
||||
bigData = true;
|
||||
wallet= true;
|
||||
}
|
||||
else if (arg == "--singletest" && i + 1 < argc)
|
||||
{
|
||||
|
@ -195,6 +195,7 @@ public:
|
||||
bool memory = false;
|
||||
bool inputLimits = false;
|
||||
bool bigData = false;
|
||||
bool wallet = false;
|
||||
/// @}
|
||||
|
||||
/// Get reference to options
|
||||
|
Loading…
Reference in New Issue
Block a user