diff options
author | Wei-Ning Huang <w@cobinhood.com> | 2018-10-15 16:52:24 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-04-09 13:49:53 +0800 |
commit | 0df0fee8089c7c810aef18cfabbdfa11ca432889 (patch) | |
tree | 90c93e34eb122907a9b21fde3cbccfece017a4b4 | |
parent | 8275088c664fb38d487b47d13b64db4407c76df5 (diff) | |
download | dexon-0df0fee8089c7c810aef18cfabbdfa11ca432889.tar dexon-0df0fee8089c7c810aef18cfabbdfa11ca432889.tar.gz dexon-0df0fee8089c7c810aef18cfabbdfa11ca432889.tar.bz2 dexon-0df0fee8089c7c810aef18cfabbdfa11ca432889.tar.lz dexon-0df0fee8089c7c810aef18cfabbdfa11ca432889.tar.xz dexon-0df0fee8089c7c810aef18cfabbdfa11ca432889.tar.zst dexon-0df0fee8089c7c810aef18cfabbdfa11ca432889.zip |
test: add a simple test script to launch 7 local nodes
-rwxr-xr-x | test/run_test.sh | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/test/run_test.sh b/test/run_test.sh new file mode 100755 index 000000000..f02200994 --- /dev/null +++ b/test/run_test.sh @@ -0,0 +1,17 @@ +#!/bin/bash + +GETH=../build/bin/geth + +pkill -9 -f geth + +bootnode -nodekey bootnode.key --verbosity=9 > bootnode.log 2>&1 & + +for i in $(seq 1 7); do + datadir=$PWD/Dexon.$i + rm -rf $datadir + $GETH --datadir=$datadir init genesis.json + cp test$i.nodekey $datadir/geth/nodekey + $GETH --datadir=$datadir --port=$((21000 + $i)) > geth.$i.log 2>&1 & +done + +tail -f geth.*.log |