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 /scripts | |
parent | 6106bf98bbe19e419d5ee3a6454f6b4b79ebfc0d (diff) | |
parent | f892d1b9a3af3d233894968ae87ebea96b1572eb (diff) | |
download | dexon-solidity-3ccd19868a143ad3da5e9572d9732fa740d1270a.tar dexon-solidity-3ccd19868a143ad3da5e9572d9732fa740d1270a.tar.gz dexon-solidity-3ccd19868a143ad3da5e9572d9732fa740d1270a.tar.bz2 dexon-solidity-3ccd19868a143ad3da5e9572d9732fa740d1270a.tar.lz dexon-solidity-3ccd19868a143ad3da5e9572d9732fa740d1270a.tar.xz dexon-solidity-3ccd19868a143ad3da5e9572d9732fa740d1270a.tar.zst dexon-solidity-3ccd19868a143ad3da5e9572d9732fa740d1270a.zip |
Merge pull request #947 from winsvega/soltest
rename --ipc to --ipcpath
Diffstat (limited to 'scripts')
-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 |