diff options
author | Jimmy Hu <jimmy.hu@dexon.org> | 2019-01-03 10:43:08 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-04-09 21:32:55 +0800 |
commit | 5e4727e66d79a9306e36b8d924cd74902cc74c74 (patch) | |
tree | eb5b2bbb43368e1be2d0483b0946ec913f229c2a | |
parent | 0f028c2ff44708ee98ca87e27691f87fa7b7e6d9 (diff) | |
download | dexon-5e4727e66d79a9306e36b8d924cd74902cc74c74.tar.gz dexon-5e4727e66d79a9306e36b8d924cd74902cc74c74.tar.zst dexon-5e4727e66d79a9306e36b8d924cd74902cc74c74.zip |
test: update run_test.sh with dmoment
-rwxr-xr-x | test/run_test.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/run_test.sh b/test/run_test.sh index 5c4345925..a2280cc7d 100755 --- a/test/run_test.sh +++ b/test/run_test.sh @@ -29,6 +29,8 @@ fi rm -f log-latest ln -s $logsdir log-latest +let dmoment=`date +%s`+7 + # A standalone RPC server for accepting RPC requests. datadir=$PWD/Dexon.rpc rm -rf $datadir @@ -43,6 +45,7 @@ $GDEX \ --ws --wsapi=eth,net,web3,debug \ --wsaddr=0.0.0.0 --wsport=8546 \ --wsorigins='*' --rpcvhosts='*' --rpccorsdomain="*" \ + --dmoment=$dmoment \ > $logsdir/gdex.rpc.log 2>&1 & # Nodes @@ -62,6 +65,7 @@ for i in $(seq 0 3); do --ws --wsapi=eth,net,web3,debug \ --wsaddr=0.0.0.0 --wsport=$((8548 + $i * 2)) \ --wsorigins='*' --rpcvhosts='*' --rpccorsdomain="*" \ + --dmoment=$dmoment \ --pprof --pprofaddr=localhost --pprofport=$((6060 + $i)) \ > $logsdir/gdex.$i.log 2>&1 & done |