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 /scripts/tests.sh | |
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 'scripts/tests.sh')
-rwxr-xr-x | scripts/tests.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/tests.sh b/scripts/tests.sh index f3bcf65f..93afd2d2 100755 --- a/scripts/tests.sh +++ b/scripts/tests.sh @@ -53,7 +53,7 @@ $ETH_PATH --test -d /tmp/test & while [ ! -S /tmp/test/geth.ipc ]; do sleep 2; done # And then run the Solidity unit-tests, pointing to that IPC endpoint. -"$REPO_ROOT"/build/test/soltest -- --ipc /tmp/test/geth.ipc +"$REPO_ROOT"/build/test/soltest -- --ipcpath /tmp/test/geth.ipc ERROR_CODE=$? pkill eth || true sleep 4 |