mirror of
https://github.com/fluencelabs/tendermint
synced 2025-04-25 14:52:17 +00:00
16 lines
383 B
Bash
16 lines
383 B
Bash
#! /bin/bash
|
|
set -eu
|
|
|
|
DOCKER_IMAGE=$1
|
|
NETWORK_NAME=$2
|
|
N=$3
|
|
PROXY_APP=$4
|
|
|
|
cd "$GOPATH/src/github.com/tendermint/tendermint"
|
|
|
|
echo "Test reconnecting from the address book"
|
|
bash test/p2p/pex/test_addrbook.sh "$DOCKER_IMAGE" "$NETWORK_NAME" "$N" "$PROXY_APP"
|
|
|
|
echo "Test connecting via /dial_peers"
|
|
bash test/p2p/pex/test_dial_peers.sh "$DOCKER_IMAGE" "$NETWORK_NAME" "$N" "$PROXY_APP"
|