From 66f61445aeb0eb10a8e384d4a9d2f9eb4b2d510d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=A0=E7=A5=96=E5=BB=BA?= Date: Wed, 22 May 2024 14:49:16 +0800 Subject: [PATCH] e2e: skip SCTP connectivity tests for versions prior to 1.12 (#4065) Signed-off-by: zhangzujian --- Makefile.e2e | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile.e2e b/Makefile.e2e index b80af84e179..798fd7fed1d 100644 --- a/Makefile.e2e +++ b/Makefile.e2e @@ -21,6 +21,7 @@ VER_MAJOR = $(shell echo $(VERSION_NUM) | cut -f1 -d.) VER_MINOR = $(shell echo $(VERSION_NUM) | cut -f2 -d.) ifeq ($(shell test $(VER_MAJOR) -lt 1 -o \( $(VER_MAJOR) -eq 1 -a $(VER_MINOR) -lt 12 \) && echo true),true) K8S_CONFORMANCE_E2E_SKIP += "sig-network.*Services.*session affinity" +K8S_CONFORMANCE_E2E_SKIP += "sig-network.*Feature:SCTPConnectivity" else K8S_CONFORMANCE_E2E_FOCUS += "sig-network.*Networking.*Feature:SCTPConnectivity" endif