#!/bin/bash
set -e

cd $(dirname $0)/..

echo Running tests

[ "${ARCH}" == "amd64" ] && RACE=-race
go test ${RACE} -cover -tags=test ./...
