Codebase list golang-github-russellhaering-goxmldsig / c2267b23-0bb0-48a3-b6c2-ffef27acf3c3/main run_test.sh
c2267b23-0bb0-48a3-b6c2-ffef27acf3c3/main

Tree @c2267b23-0bb0-48a3-b6c2-ffef27acf3c3/main (Download .tar.gz)

run_test.sh @c2267b23-0bb0-48a3-b6c2-ffef27acf3c3/mainraw · 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