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;
|
bigData = true;
|
||||||
else if (arg == "--checkstate")
|
else if (arg == "--checkstate")
|
||||||
checkState = true;
|
checkState = true;
|
||||||
|
else if (arg == "--wallet")
|
||||||
|
wallet = true;
|
||||||
else if (arg == "--all")
|
else if (arg == "--all")
|
||||||
{
|
{
|
||||||
performance = true;
|
performance = true;
|
||||||
@ -733,6 +735,7 @@ Options::Options()
|
|||||||
memory = true;
|
memory = true;
|
||||||
inputLimits = true;
|
inputLimits = true;
|
||||||
bigData = true;
|
bigData = true;
|
||||||
|
wallet= true;
|
||||||
}
|
}
|
||||||
else if (arg == "--singletest" && i + 1 < argc)
|
else if (arg == "--singletest" && i + 1 < argc)
|
||||||
{
|
{
|
||||||
|
@ -195,6 +195,7 @@ public:
|
|||||||
bool memory = false;
|
bool memory = false;
|
||||||
bool inputLimits = false;
|
bool inputLimits = false;
|
||||||
bool bigData = false;
|
bool bigData = false;
|
||||||
|
bool wallet = false;
|
||||||
/// @}
|
/// @}
|
||||||
|
|
||||||
/// Get reference to options
|
/// Get reference to options
|
||||||
|
Loading…
Reference in New Issue
Block a user