1#!/bin/sh 2set -eu 3cd "$(dirname "$0")/.." 4 5if [ "$*" = "" ]; then 6 set ./... 7fi 8 9go test --timeout=30m "$@"
View as plain text