#!/bin/sh set -x go test ./... cd tests || exit 1 for file in *.sh; do if [ -d "$file" ]; then continue fi ./$file done