From 450f158906c29f36b81b1603945c1dd3cdfc256d Mon Sep 17 00:00:00 2001 From: Wei-Ning Huang Date: Sat, 20 Oct 2018 12:57:05 +0800 Subject: test: update run_test.sh --- test/keygen.go | 8 +++++++- test/run_test.sh | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) (limited to 'test') diff --git a/test/keygen.go b/test/keygen.go index 986342368..5397bc269 100644 --- a/test/keygen.go +++ b/test/keygen.go @@ -3,12 +3,18 @@ package main import ( "encoding/hex" "fmt" + "os" + "strconv" "github.com/dexon-foundation/dexon/crypto" ) func main() { - for i := 0; i < 4; i++ { + count, err := strconv.Atoi(os.Args[1]) + if err != nil { + panic(err) + } + for i := 0; i < count; i++ { privKey, err := crypto.GenerateKey() if err != nil { panic(err) diff --git a/test/run_test.sh b/test/run_test.sh index b38ca4da6..4d9d99947 100755 --- a/test/run_test.sh +++ b/test/run_test.sh @@ -11,7 +11,7 @@ for i in $(seq 0 3); do rm -rf $datadir $GETH --datadir=$datadir init genesis.json cp test$i.nodekey $datadir/geth/nodekey - $GETH --verbosity=4 --datadir=$datadir --port=$((28000 + $i)) --rpc --rpcaddr 127.0.0.1 --rpcport=$((8545 + $i)) --rpcapi=eth,net,web3,debug --rpcvhosts='' --rpccorsdomain="https://www.myetherwallet.com" > geth.$i.log 2>&1 & + $GETH --verbosity=4 --datadir=$datadir --port=$((28000 + $i)) --rpc --rpcaddr 127.0.0.1 --rpcport=$((8545 + $i)) --rpcapi=eth,net,web3,debug --rpcvhosts='*' --rpccorsdomain="http://localhost:8000,https://www.myetherwallet.com" > geth.$i.log 2>&1 & done tail -f geth.*.log -- cgit v1.2.3