mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
avoid network tests when --nonetwork is set
This commit is contained in:
parent
bfcfbf8ea7
commit
ba65702982
@ -754,8 +754,10 @@ Options::Options()
|
|||||||
checkState = true;
|
checkState = true;
|
||||||
else if (arg == "--wallet")
|
else if (arg == "--wallet")
|
||||||
wallet = true;
|
wallet = true;
|
||||||
else if (arg == "--network")
|
else if (arg == "--nonetwork")
|
||||||
network = true;
|
nonetwork = true;
|
||||||
|
else if (arg == "--nodag")
|
||||||
|
nodag = true;
|
||||||
else if (arg == "--all")
|
else if (arg == "--all")
|
||||||
{
|
{
|
||||||
performance = true;
|
performance = true;
|
||||||
@ -764,7 +766,6 @@ Options::Options()
|
|||||||
inputLimits = true;
|
inputLimits = true;
|
||||||
bigData = true;
|
bigData = true;
|
||||||
wallet = true;
|
wallet = true;
|
||||||
network = true;
|
|
||||||
}
|
}
|
||||||
else if (arg == "--singletest" && i + 1 < argc)
|
else if (arg == "--singletest" && i + 1 < argc)
|
||||||
{
|
{
|
||||||
|
@ -223,7 +223,8 @@ public:
|
|||||||
bool inputLimits = false;
|
bool inputLimits = false;
|
||||||
bool bigData = false;
|
bool bigData = false;
|
||||||
bool wallet = false;
|
bool wallet = false;
|
||||||
bool network = false;
|
bool nonetwork = false;
|
||||||
|
bool nodag = false;
|
||||||
/// @}
|
/// @}
|
||||||
|
|
||||||
/// Get reference to options
|
/// Get reference to options
|
||||||
|
Loading…
Reference in New Issue
Block a user