From e3fa01ff226ee26d7744c2eb1f6cb87b93678552 Mon Sep 17 00:00:00 2001 From: Mike Spreitzer Date: Thu, 13 Jan 2022 00:13:59 -0500 Subject: [PATCH] Make KUBE_TEST_ARGS come last, so that --args can be used --- hack/make-rules/test-integration.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hack/make-rules/test-integration.sh b/hack/make-rules/test-integration.sh index 68789119280..414992d3180 100755 --- a/hack/make-rules/test-integration.sh +++ b/hack/make-rules/test-integration.sh @@ -72,7 +72,7 @@ runTests() { make -C "${KUBE_ROOT}" test \ WHAT="${WHAT:-$(kube::test::find_integration_test_dirs | paste -sd' ' -)}" \ GOFLAGS="${GOFLAGS:-}" \ - KUBE_TEST_ARGS="--alsologtostderr=true ${KUBE_TEST_ARGS:-} ${SHORT:--short=true} --vmodule=${KUBE_TEST_VMODULE}" \ + KUBE_TEST_ARGS="--alsologtostderr=true ${SHORT:--short=true} --vmodule=${KUBE_TEST_VMODULE} ${KUBE_TEST_ARGS:-}" \ KUBE_TIMEOUT="${KUBE_TIMEOUT}" \ KUBE_RACE=""