fix tests

This commit is contained in:
Ethan Buchman
2017-01-13 00:54:01 -05:00
parent 1e25e9f58f
commit ba7ca4f372
3 changed files with 6 additions and 1 deletions
+3
View File
@@ -28,17 +28,20 @@ for lib in "${LIBS_GO_TEST[@]}"; do
fi
done
DIR=`pwd`
for lib in "${LIBS_MAKE_TEST[@]}"; do
# checkout vendored version of lib
bash scripts/glide/checkout.sh $GLIDE $lib
echo "Testing $lib ..."
cd $GOPATH/src/github.com/tendermint/$lib
make test
if [[ "$?" != 0 ]]; then
echo "FAIL"
exit 1
fi
cd $DIR
done
echo ""