| 73 | } |
| 74 | |
| 75 | bool IsolTestOptions::parse(int _argc, char const* const* _argv) |
| 76 | { |
| 77 | bool const shouldContinue = CommonOptions::parse(_argc, _argv); |
| 78 | |
| 79 | if (showHelp || !shouldContinue) |
| 80 | { |
| 81 | std::cout << options << std::endl; |
| 82 | return false; |
| 83 | } |
| 84 | |
| 85 | enforceGasTest = enforceGasTest || (evmVersion() == langutil::EVMVersion{} && !useABIEncoderV1); |
| 86 | |
| 87 | return shouldContinue; |
| 88 | } |
| 89 | |
| 90 | void IsolTestOptions::validate() const |
| 91 | { |
no test coverage detected