diff options
author | Wei-Ning Huang <w@cobinhood.com> | 2018-10-15 16:52:24 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-03-12 12:19:09 +0800 |
commit | 8ca2b78b1f5070b58bf2a6ba5b50051eb1613070 (patch) | |
tree | c8620e118548d34285c3941f02291b120e0b9151 | |
parent | 1226a627aff84c035c6c0569b4753f992a5886ac (diff) | |
download | dexon-8ca2b78b1f5070b58bf2a6ba5b50051eb1613070.tar.gz dexon-8ca2b78b1f5070b58bf2a6ba5b50051eb1613070.tar.zst dexon-8ca2b78b1f5070b58bf2a6ba5b50051eb1613070.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 |