open-nomad/scripts/test.sh

26 lines
728 B
Bash
Raw Normal View History

2015-06-01 13:25:51 +00:00
#!/usr/bin/env bash
2016-08-19 23:32:41 +00:00
set -e
2015-06-01 13:25:51 +00:00
GOTEST_TAGS="nomad_test"
if [[ $(uname) == "Linux" ]]; then
if pkg-config --exists lxc; then
GOTEST_TAGS="$GOTEST_TAGS lxc"
fi
fi
2015-06-01 13:25:51 +00:00
# Create a temp dir and clean it up on exit
TEMPDIR=`mktemp -d -t nomad-test.XXX`
trap "rm -rf $TEMPDIR" EXIT HUP INT QUIT TERM
# Build the Nomad binary for the API tests
echo "--> Building nomad"
2017-01-27 21:22:58 +00:00
echo go build -i -tags \"$GOTEST_TAGS\" -o $TEMPDIR/nomad
go build -i -tags "$GOTEST_TAGS" -o $TEMPDIR/nomad || exit 1
2015-06-01 13:25:51 +00:00
# Run the tests
echo "--> Running tests"
GOBIN="`which go`"
sudo -E PATH=$TEMPDIR:$PATH -E GOPATH=$GOPATH -E NOMAD_TEST_RKT=1 \
2017-07-21 03:28:31 +00:00
$GOBIN test -tags "$GOTEST_TAGS" ${GOTEST_FLAGS:--cover -timeout=900s} $($GOBIN list ./... | grep -v /vendor/)
2016-08-16 19:32:29 +00:00