test: refactor bash; test fastsync (failing)

This commit is contained in:
Ethan Buchman
2016-08-25 18:27:21 -04:00
parent 4776a7bcbe
commit 1bfd67dfc6
16 changed files with 158 additions and 26 deletions

9
test/docker/update.sh Normal file
View File

@ -0,0 +1,9 @@
#! /bin/bash
# update the `tester` image by copying in the latest tendermint binary
docker run --name builder tester true
docker cp $GOPATH/bin/tendermint builder:/go/bin/tendermint
docker commit builder tester
docker rm -vf builder