diff options
author | Dimitry <dimitry@ethereum.org> | 2018-08-27 20:48:20 +0800 |
---|---|---|
committer | Dimitry <dimitry@ethereum.org> | 2018-11-20 05:49:16 +0800 |
commit | 6096d6bf16ac548b208ec8a88baa61cd9ec83587 (patch) | |
tree | 22404569510a3bc2889ec4379775131c80ed2928 /Retesteth/eth | |
parent | 74cc22b8f06e61bd1313df35848ed8e5f774e571 (diff) | |
download | dexon-tests-retestethcfg.tar dexon-tests-retestethcfg.tar.gz dexon-tests-retestethcfg.tar.bz2 dexon-tests-retestethcfg.tar.lz dexon-tests-retestethcfg.tar.xz dexon-tests-retestethcfg.tar.zst dexon-tests-retestethcfg.zip |
retesteth client configsretestethcfg
Diffstat (limited to 'Retesteth/eth')
-rw-r--r-- | Retesteth/eth/config | 2 | ||||
-rw-r--r-- | Retesteth/eth/eth.sh | 19 |
2 files changed, 18 insertions, 3 deletions
diff --git a/Retesteth/eth/config b/Retesteth/eth/config index 211eea22f..f03b39e78 100644 --- a/Retesteth/eth/config +++ b/Retesteth/eth/config @@ -1,5 +1,5 @@ { - "name" : "CPP Client", + "name" : "Ethereum cpp-client", "socketType" : "ipc", "socketAddress" : "local" } diff --git a/Retesteth/eth/eth.sh b/Retesteth/eth/eth.sh index a822578d7..832408801 100644 --- a/Retesteth/eth/eth.sh +++ b/Retesteth/eth/eth.sh @@ -1,2 +1,17 @@ -echo "Starting $1 $2" -eth --test --db-path $1 --ipcpath $2 --log-verbosity 4 +#!/bin/bash +onexit() +{ + kill $child +} +trap onexit SIGTERM +trap onexit SIGABRT + +##ARGUMENTS PASSED BY RETESTETH +## +## $1 <db-path> A path to database directory that a client should use +## $2 <ipcpath> A path to the ipc socket file (has /geth.ipc at the end) +##### + +eth --test --db-path $1 --ipcpath $2 --log-verbosity 5 & +child=$! +wait "$child" |