diff options
author | Dimitry <dimitry@ethdev.com> | 2016-08-29 20:21:49 +0800 |
---|---|---|
committer | Dimitry <dimitry@ethdev.com> | 2016-08-29 20:21:49 +0800 |
commit | f892d1b9a3af3d233894968ae87ebea96b1572eb (patch) | |
tree | 4b8dcc7b89604861e56b9c4b9cd06f2d587ff1fb /test/TestHelper.cpp | |
parent | c2665dc2fe0e7e973ae599ac7010fa6939ebd20f (diff) | |
download | dexon-solidity-f892d1b9a3af3d233894968ae87ebea96b1572eb.tar.gz dexon-solidity-f892d1b9a3af3d233894968ae87ebea96b1572eb.tar.zst dexon-solidity-f892d1b9a3af3d233894968ae87ebea96b1572eb.zip |
rename --ipc to --ipcpath
Diffstat (limited to 'test/TestHelper.cpp')
-rw-r--r-- | test/TestHelper.cpp | 2 |
1 files changed, 1 insertions, 1 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++; |