Support passing args to cluster/test-smoke.sh

pull/6/head
Karl Isenberg 2015-10-09 14:42:54 -07:00
parent ed382ec0a0
commit a73463f3a6
1 changed files with 3 additions and 1 deletions

View File

@ -25,6 +25,8 @@ set -o pipefail
KUBE_ROOT=$(dirname "${BASH_SOURCE}")/..
TEST_ARGS="$@"
SMOKE_TEST_FOCUS_REGEX="Guestbook.application"
exec "${KUBE_ROOT}/cluster/test-e2e.sh" -ginkgo.focus="${SMOKE_TEST_FOCUS_REGEX}"
exec "${KUBE_ROOT}/cluster/test-e2e.sh" -ginkgo.focus="${SMOKE_TEST_FOCUS_REGEX}" ${TEST_ARGS}