diff --git a/_scripts/test_mac.sh b/_scripts/test_mac.sh index 93af0c1f..72ba4957 100644 --- a/_scripts/test_mac.sh +++ b/_scripts/test_mac.sh @@ -42,4 +42,11 @@ export GOARCH="$ARCH" export PATH="$GOROOT/bin:$PATH" go version +set +e make test +x=$? +if [ "$GOVERSION" = "gotip" ]; then + exit 0 +else + exit $x +fi