mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Support EVM Version rules for extracted tests.
This commit is contained in:
@@ -50,13 +50,13 @@ string getIPCSocketPath()
|
||||
}
|
||||
|
||||
ExecutionFramework::ExecutionFramework():
|
||||
ExecutionFramework(getIPCSocketPath())
|
||||
ExecutionFramework(getIPCSocketPath(), dev::test::Options::get().evmVersion())
|
||||
{
|
||||
}
|
||||
|
||||
ExecutionFramework::ExecutionFramework(string const& _ipcPath):
|
||||
ExecutionFramework::ExecutionFramework(string const& _ipcPath, langutil::EVMVersion const _evmVersion):
|
||||
m_rpc(RPCSession::instance(_ipcPath)),
|
||||
m_evmVersion(dev::test::Options::get().evmVersion()),
|
||||
m_evmVersion(_evmVersion),
|
||||
m_optimize(dev::test::Options::get().optimize),
|
||||
m_showMessages(dev::test::Options::get().showMessages),
|
||||
m_sender(m_rpc.account(0))
|
||||
|
||||
Reference in New Issue
Block a user