mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-23 11:50:44 +00:00
Merge pull request #100205 from mauriciopoppe/enable-delve-in-e2e-tests
Use a debugging tool in E2E tests
This commit is contained in:
commit
b91ec70329
@ -41,6 +41,13 @@ GINKGO_NO_COLOR=${GINKGO_NO_COLOR:-n}
|
|||||||
# If 'y', will rerun failed tests once to give them a second chance.
|
# If 'y', will rerun failed tests once to give them a second chance.
|
||||||
GINKGO_TOLERATE_FLAKES=${GINKGO_TOLERATE_FLAKES:-n}
|
GINKGO_TOLERATE_FLAKES=${GINKGO_TOLERATE_FLAKES:-n}
|
||||||
|
|
||||||
|
# If set, the command executed will be:
|
||||||
|
# - `dlv exec` if set to "delve"
|
||||||
|
# - `gdb` if set to "gdb"
|
||||||
|
# NOTE: for this to work the e2e.test binary has to be compiled with
|
||||||
|
# make WHAT=test/e2e/e2e.test GOGCFLAGS="all=-N -l" GOLDFLAGS=""
|
||||||
|
E2E_TEST_DEBUG_TOOL=${E2E_TEST_DEBUG_TOOL:-}
|
||||||
|
|
||||||
: "${KUBECTL:="${KUBE_ROOT}/cluster/kubectl.sh"}"
|
: "${KUBECTL:="${KUBE_ROOT}/cluster/kubectl.sh"}"
|
||||||
: "${KUBE_CONFIG_FILE:="config-test.sh"}"
|
: "${KUBE_CONFIG_FILE:="config-test.sh"}"
|
||||||
|
|
||||||
@ -152,7 +159,16 @@ CONTAINER_RUNTIME=${CONTAINER_RUNTIME:-${KUBE_CONTAINER_RUNTIME:-}}
|
|||||||
# Add path for things like running kubectl binary.
|
# Add path for things like running kubectl binary.
|
||||||
PATH=$(dirname "${e2e_test}"):"${PATH}"
|
PATH=$(dirname "${e2e_test}"):"${PATH}"
|
||||||
export PATH
|
export PATH
|
||||||
"${ginkgo}" "${ginkgo_args[@]:+${ginkgo_args[@]}}" "${e2e_test}" -- \
|
|
||||||
|
# Choose the program to execute.
|
||||||
|
program=("${ginkgo}")
|
||||||
|
if [[ "${E2E_TEST_DEBUG_TOOL}" == "delve" ]]; then
|
||||||
|
program=("dlv" "exec")
|
||||||
|
elif [[ "${E2E_TEST_DEBUG_TOOL}" == "gdb" ]]; then
|
||||||
|
program=("gdb")
|
||||||
|
fi
|
||||||
|
|
||||||
|
"${program[@]}" "${ginkgo_args[@]:+${ginkgo_args[@]}}" "${e2e_test}" -- \
|
||||||
"${auth_config[@]:+${auth_config[@]}}" \
|
"${auth_config[@]:+${auth_config[@]}}" \
|
||||||
--ginkgo.flakeAttempts="${FLAKE_ATTEMPTS}" \
|
--ginkgo.flakeAttempts="${FLAKE_ATTEMPTS}" \
|
||||||
--host="${KUBE_MASTER_URL}" \
|
--host="${KUBE_MASTER_URL}" \
|
||||||
|
Loading…
Reference in New Issue
Block a user