aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJimmy Hu <jimmy.hu@dexon.org>2019-01-03 10:43:08 +0800
committerWei-Ning Huang <w@dexon.org>2019-01-14 15:26:26 +0800
commit63f30a6c640ed62a9d4f128c92c9847b30c48102 (patch)
treeb697bbdbb577f9c522e6931a1c2f696798c331ad
parent3ec88a9b7dfb0be93277bf1d26d5ad04dab88d03 (diff)
downloaddexon-63f30a6c640ed62a9d4f128c92c9847b30c48102.tar.gz
dexon-63f30a6c640ed62a9d4f128c92c9847b30c48102.tar.zst
dexon-63f30a6c640ed62a9d4f128c92c9847b30c48102.zip
test: update run_test.sh with dmoment
-rwxr-xr-xtest/run_test.sh4
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