mirror of
https://github.com/tendermint/tendermint.git
synced 2026-02-07 12:30:45 +00:00
11 lines
250 B
Bash
11 lines
250 B
Bash
#! /bin/bash
|
|
|
|
DOCKER_IMAGE=$1
|
|
NETWORK_NAME=local_testnet
|
|
|
|
# start the testnet on a local network
|
|
bash test/p2p/local_testnet.sh $DOCKER_IMAGE $NETWORK_NAME
|
|
|
|
# run the test
|
|
bash test/p2p/test_client.sh $DOCKER_IMAGE $NETWORK_NAME test/p2p/run_test.sh
|