From 55d2868e9d88b6e47bd0cb4f8d1de3343e381a23 Mon Sep 17 00:00:00 2001 From: Benjamin Elder Date: Thu, 17 Jun 2021 15:49:34 -0700 Subject: [PATCH] don't redundantly set KUBE_RACE in test-integration.sh --- hack/make-rules/test-integration.sh | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/hack/make-rules/test-integration.sh b/hack/make-rules/test-integration.sh index 88647f8afd2..9707fefd37d 100755 --- a/hack/make-rules/test-integration.sh +++ b/hack/make-rules/test-integration.sh @@ -66,16 +66,12 @@ runTests() { kube::etcd::start kube::log::status "Running integration test cases" - # export KUBE_RACE - # - # Enable the Go race detector. - export KUBE_RACE="-race" 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_RACE="" \ - KUBE_TIMEOUT="${KUBE_TIMEOUT}" + KUBE_TIMEOUT="${KUBE_TIMEOUT}" \ + KUBE_RACE="" cleanup }