Codebase list golang-github-russellhaering-goxmldsig / debian/1.1.0-1 run_test.sh
debian/1.1.0-1

Tree @debian/1.1.0-1 (Download .tar.gz)

run_test.sh @debian/1.1.0-1raw · history · blame

#!/bin/bash
cd `dirname $0`
DIRS=`git grep -l 'func Test' | xargs dirname | sort -u`
for DIR in $DIRS
do
	echo
	echo "dir: $DIR"
	echo "======================================"
	pushd $DIR >/dev/null
	go test -v || exit 1
	popd >/dev/null
done