From a73463f3a63a1039d5ba28e3d6fb014d427c5f35 Mon Sep 17 00:00:00 2001 From: Karl Isenberg Date: Fri, 9 Oct 2015 14:42:54 -0700 Subject: [PATCH] Support passing args to cluster/test-smoke.sh --- cluster/test-smoke.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cluster/test-smoke.sh b/cluster/test-smoke.sh index 85c9504c770..2535bb3b20c 100755 --- a/cluster/test-smoke.sh +++ b/cluster/test-smoke.sh @@ -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}