1#!/bin/bash 2set -eu -o pipefail 3 4# Small convenience script for running the tests with various combinations of 5# arch/tags. This assumes we're running on amd64 and have qemu available. 6 7go test ./... 8go test -tags purego ./... 9GOARCH=arm64 go test 10GOARCH=arm64 go test -tags purego