2015-04-11 20:21:56 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
# Create a temp dir and clean it up on exit
|
2015-04-12 01:36:13 +00:00
|
|
|
TEMPDIR=`mktemp -d -t consul-test.XXX`
|
2015-04-11 20:21:56 +00:00
|
|
|
trap "rm -rf $TEMPDIR" EXIT HUP INT QUIT TERM
|
|
|
|
|
|
|
|
# Build the Consul binary for the API tests
|
|
|
|
echo "--> Building consul"
|
|
|
|
go build -o $TEMPDIR/consul || exit 1
|
|
|
|
|
|
|
|
# Run the tests
|
|
|
|
echo "--> Running tests"
|
|
|
|
go list ./... | PATH=$TEMPDIR:$PATH xargs -n1 go test
|