tendermint/test/p2p/fast_sync/test.sh

17 lines
261 B
Bash
Raw Normal View History

#! /bin/bash
set -eu
2016-12-06 19:08:05 -08:00
DOCKER_IMAGE=$1
NETWORK_NAME=$2
2016-12-12 13:00:21 -08:00
N=$3
PROXY_APP=$4
2016-12-12 13:00:21 -08:00
cd $GOPATH/src/github.com/tendermint/tendermint
2016-12-12 13:00:21 -08:00
# run it on each of them
for i in `seq 1 $N`; do
bash test/p2p/fast_sync/test_peer.sh $DOCKER_IMAGE $NETWORK_NAME $i $N $PROXY_APP
done