2017-01-13 19:27:31 +04:00
|
|
|
#! /bin/bash
|
|
|
|
set -eu
|
|
|
|
|
|
|
|
DOCKER_IMAGE=$1
|
|
|
|
NETWORK_NAME=$2
|
|
|
|
N=$3
|
|
|
|
PROXY_APP=$4
|
|
|
|
|
2018-01-09 16:36:15 -06:00
|
|
|
cd "$GOPATH/src/github.com/tendermint/tendermint"
|
2017-01-13 19:27:31 +04:00
|
|
|
|
2017-03-05 23:12:27 -05:00
|
|
|
echo "Test reconnecting from the address book"
|
2018-01-09 16:36:15 -06:00
|
|
|
bash test/p2p/pex/test_addrbook.sh "$DOCKER_IMAGE" "$NETWORK_NAME" "$N" "$PROXY_APP"
|
2017-01-13 19:27:31 +04:00
|
|
|
|
2018-01-18 17:40:12 -05:00
|
|
|
echo "Test connecting via /dial_peers"
|
|
|
|
bash test/p2p/pex/test_dial_peers.sh "$DOCKER_IMAGE" "$NETWORK_NAME" "$N" "$PROXY_APP"
|