mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
parse command line arguments
ipcPath
This commit is contained in:
parent
763faf7b0e
commit
27df4b7e71
@ -20,6 +20,7 @@
|
|||||||
* Framework for executing Solidity contracts and testing them against C++ implementation.
|
* Framework for executing Solidity contracts and testing them against C++ implementation.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <boost/test/framework.hpp>
|
||||||
#include <test/libsolidity/SolidityExecutionFramework.h>
|
#include <test/libsolidity/SolidityExecutionFramework.h>
|
||||||
|
|
||||||
|
|
||||||
@ -28,12 +29,33 @@ using namespace dev;
|
|||||||
using namespace dev::solidity;
|
using namespace dev::solidity;
|
||||||
using namespace dev::solidity::test;
|
using namespace dev::solidity::test;
|
||||||
|
|
||||||
|
ExecutionFramework::boostArg::boostArg()
|
||||||
|
{
|
||||||
|
size_t argc = boost::unit_test::framework::master_test_suite().argc;
|
||||||
|
char** argv = boost::unit_test::framework::master_test_suite().argv;
|
||||||
|
for (size_t i = 0; i < argc; i++)
|
||||||
|
{
|
||||||
|
string arg = argv[i];
|
||||||
|
if (arg == "--ipc" && i+1 < argc)
|
||||||
|
{
|
||||||
|
ipcPath = argv[i+1];
|
||||||
|
i++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (ipcPath.empty())
|
||||||
|
BOOST_FAIL("ERROR: ipcPath not set! (use --ipc <path>)");
|
||||||
|
}
|
||||||
|
|
||||||
ExecutionFramework::ExecutionFramework():
|
ExecutionFramework::boostArg const& ExecutionFramework::getArgs()
|
||||||
m_rpc(RPCSession::instance("/home/wins/Ethereum/testnet/ethnode1/geth.ipc")),
|
{
|
||||||
|
static boostArg boostArgs;
|
||||||
|
return boostArgs;
|
||||||
|
}
|
||||||
|
|
||||||
|
ExecutionFramework::ExecutionFramework() :
|
||||||
|
m_rpc(RPCSession::instance(getArgs().ipcPath)),
|
||||||
m_sender(m_rpc.account(0))
|
m_sender(m_rpc.account(0))
|
||||||
{
|
{
|
||||||
eth::NoProof::init();
|
|
||||||
if (g_logVerbosity != -1)
|
if (g_logVerbosity != -1)
|
||||||
g_logVerbosity = 0;
|
g_logVerbosity = 0;
|
||||||
|
|
||||||
|
@ -255,6 +255,13 @@ protected:
|
|||||||
bool storageEmpty(Address const& _addr);
|
bool storageEmpty(Address const& _addr);
|
||||||
bool addressHasCode(Address const& _addr);
|
bool addressHasCode(Address const& _addr);
|
||||||
|
|
||||||
|
struct boostArg
|
||||||
|
{
|
||||||
|
boostArg();
|
||||||
|
std::string ipcPath;
|
||||||
|
};
|
||||||
|
|
||||||
|
boostArg const& getArgs();
|
||||||
RPCSession& m_rpc;
|
RPCSession& m_rpc;
|
||||||
|
|
||||||
struct LogEntry
|
struct LogEntry
|
||||||
|
Loading…
Reference in New Issue
Block a user