1
0
mirror of https://github.com/rancher/os.git synced 2025-09-02 15:24:32 +00:00
Files
os/scripts/integration-test
2017-01-27 03:50:00 +00:00

22 lines
308 B
Bash
Executable File

#!/bin/bash
# help: Run integration tests
set -e
if [ "$INTEGRATION_TESTS" = 0 ]; then
exit 0
fi
source $(dirname $0)/version
cd $(dirname $0)/../tests
if [ ! -e "$INITRD" ]; then
../scripts/dev
fi
if [ "$RUNTEST" != "" ]; then
RUNTEST="-check.f ${RUNTEST}"
fi
go test -timeout 9999m $RUNTEST