From bd2493130cb04afbb0d8b33235f1068052290af1 Mon Sep 17 00:00:00 2001 From: zhangzujian Date: Wed, 22 May 2024 05:52:34 +0000 Subject: [PATCH] e2e: skip SCTP connectivity tests for versions prior to 1.12 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