1
0
mirror of https://github.com/etcd-io/etcd.git synced 2026-02-05 06:46:49 +01:00

Migrate robustness tests to use Go workspace

Switch the robustness tests to use the new run_go_tests function.

Signed-off-by: Ivan Valdes <ivan@vald.es>
This commit is contained in:
Ivan Valdes
2025-11-20 15:01:49 -08:00
parent 6775d033bc
commit e8ed6c3f21

View File

@@ -183,8 +183,11 @@ function e2e_pass {
function robustness_pass {
# e2e tests are running pre-build binary. Settings like --race,-cover,-cpu does not have any impact.
# shellcheck disable=SC2068
run_for_module "tests" go_test "./robustness" "keep_going" : -timeout="${TIMEOUT:-30m}" ${RUN_ARG[@]:-} "$@"
KEEP_GOING_TESTS=true \
run_go_tests_expanding_packages ./tests/robustness/... \
-timeout="${TIMEOUT:-30m}" \
"${RUN_ARG[@]}" \
"$@"
}
function integration_e2e_pass {