gorm/tests/tests_all.sh

38 lines
798 B
Bash
Executable File

dialects=("sqlite" "mysql" "postgres" "sqlserver")
if [[ $(pwd) == *"gorm/tests"* ]]; then
cd ..
fi
for dialect in "${dialects[@]}" ; do
if [ "$GORM_DIALECT" = "" ] || [ "$GORM_DIALECT" = "${dialect}" ]
then
echo "testing ${dialect}..."
race=""
if [ "$GORM_DIALECT" = "sqlserver" ]
then
race="-race"
fi
if [ "$GORM_VERBOSE" = "" ]
then
GORM_DIALECT=${dialect} go test $race -count=1 ./...
if [ -d tests ]
then
cd tests
GORM_DIALECT=${dialect} go test $race -count=1 ./...
cd ..
fi
else
GORM_DIALECT=${dialect} go test $race -count=1 -v ./...
if [ -d tests ]
then
cd tests
GORM_DIALECT=${dialect} go test $race -count=1 -v ./...
cd ..
fi
fi
fi
done