7aa0c91401
Using the VERBOSE environment variable, tests and binary compilation are ran in verbose mode (using -v), but by default there are more quiet O:). Signed-off-by: Vincent Demeester <vincent@sbr.pm>
14 lines
268 B
Bash
Executable file
14 lines
268 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
|
|
export SCRIPTDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
export DEST=.
|
|
|
|
TESTFLAGS="${TESTFLAGS} -test.timeout=30m -check.v"
|
|
|
|
if [ -n "$VERBOSE" ]; then
|
|
TESTFLAGS="${TESTFLAGS} -v"
|
|
fi
|
|
|
|
cd integration
|
|
CGO_ENABLED=0 go test $TESTFLAGS
|