mirror of
https://github.com/fluencelabs/tendermint
synced 2025-04-24 22:32:15 +00:00
* Update makefile - these two files were taken from the sdk with adjustments for usage in TM Signed-off-by: Marko Baricevic <marbar3778@yahoo.com> * .phony * remove slate * more tools * circleci update 1/2 * fixed typo * fixed bash error * '<<' must be escaped in 2.1 * fixed invalid config * removed golangci-lint from tools. runs as github app now * one more issue in Circle config * some more work on the Circle config * minor changes * fiddling with restore cache config * fiddling with restore cache config * added commands in circle config. makefile changes * bash shenannigans * bash shenannigans * fighting the config demons * fighting the config demons, v2 * fighting the config demons, v3 * updating p2p dockerfile * updating p2p dockerfile * updating p2p test * updating p2p test * testing circle config * testing circle config * remove dontcover command * its the weekend, custom docker image
44 lines
875 B
Bash
Executable File
44 lines
875 B
Bash
Executable File
#! /bin/bash
|
|
set -e
|
|
|
|
# Get the root directory.
|
|
export PATH="$GOBIN:$PATH"
|
|
SOURCE="${BASH_SOURCE[0]}"
|
|
while [ -h "$SOURCE" ] ; do SOURCE="$(readlink "$SOURCE")"; done
|
|
DIR="$( cd -P "$( dirname "$SOURCE" )/../.." && pwd )"
|
|
|
|
# Change into that dir because we expect that.
|
|
cd "$DIR" || exit
|
|
|
|
function testExample() {
|
|
N=$1
|
|
INPUT=$2
|
|
APP="$3 $4"
|
|
|
|
echo "Example $N: $APP"
|
|
$APP &> /dev/null &
|
|
sleep 2
|
|
abci-cli --log_level=error --verbose batch < "$INPUT" > "${INPUT}.out.new"
|
|
killall "$3"
|
|
|
|
pre=$(shasum < "${INPUT}.out")
|
|
post=$(shasum < "${INPUT}.out.new")
|
|
|
|
if [[ "$pre" != "$post" ]]; then
|
|
echo "You broke the tutorial"
|
|
echo "Got:"
|
|
cat "${INPUT}.out.new"
|
|
echo "Expected:"
|
|
cat "${INPUT}.out"
|
|
exit 1
|
|
fi
|
|
|
|
rm "${INPUT}".out.new
|
|
}
|
|
|
|
testExample 1 tests/test_cli/ex1.abci abci-cli kvstore
|
|
testExample 2 tests/test_cli/ex2.abci abci-cli counter
|
|
|
|
echo ""
|
|
echo "PASS"
|