mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-05-08 04:20:59 -05:00
13 lines
243 B
Bash
13 lines
243 B
Bash
#!/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
|