diff options
author | winsvega <winsvega@mail.ru> | 2016-08-31 17:45:36 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-31 17:45:36 +0800 |
commit | 3ccd19868a143ad3da5e9572d9732fa740d1270a (patch) | |
tree | 396ae015923ac1835fd851f8904f2f63b36ca763 /test | |
parent | 6106bf98bbe19e419d5ee3a6454f6b4b79ebfc0d (diff) | |
parent | f892d1b9a3af3d233894968ae87ebea96b1572eb (diff) | |
download | dexon-solidity-3ccd19868a143ad3da5e9572d9732fa740d1270a.tar.gz dexon-solidity-3ccd19868a143ad3da5e9572d9732fa740d1270a.tar.zst dexon-solidity-3ccd19868a143ad3da5e9572d9732fa740d1270a.zip |
Merge pull request #947 from winsvega/soltest
rename --ipc to --ipcpath
Diffstat (limited to 'test')
-rw-r--r-- | test/TestHelper.cpp | 2 | ||||
-rw-r--r-- | test/libsolidity/SolidityExecutionFramework.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/TestHelper.cpp b/test/TestHelper.cpp index bfc5b54c..df35ff53 100644 --- a/test/TestHelper.cpp +++ b/test/TestHelper.cpp @@ -34,7 +34,7 @@ Options::Options() { auto const& suite = boost::unit_test::framework::master_test_suite(); for (auto i = 0; i < suite.argc; i++) - if (string(suite.argv[i]) == "--ipc" && i + 1 < suite.argc) + if (string(suite.argv[i]) == "--ipcpath" && i + 1 < suite.argc) { ipcPath = suite.argv[i + 1]; i++; diff --git a/test/libsolidity/SolidityExecutionFramework.cpp b/test/libsolidity/SolidityExecutionFramework.cpp index d0ee13c6..02548121 100644 --- a/test/libsolidity/SolidityExecutionFramework.cpp +++ b/test/libsolidity/SolidityExecutionFramework.cpp @@ -39,7 +39,7 @@ string getIPCSocketPath() { string ipcPath = dev::test::Options::get().ipcPath; if (ipcPath.empty()) - BOOST_FAIL("ERROR: ipcPath not set! (use --ipc <path> or the environment variable ETH_TEST_IPC)"); + BOOST_FAIL("ERROR: ipcPath not set! (use --ipcpath <path> or the environment variable ETH_TEST_IPC)"); return ipcPath; } |