From 3a6b4366a79f11cebeb60d094e91a23c9d500e68 Mon Sep 17 00:00:00 2001 From: Antonio Ojea Date: Wed, 11 Nov 2020 13:52:46 +0100 Subject: [PATCH] remove wrong test for SCTP connectivity the test tries to test the connectivity between two pods, but it acually test the connectivity against itself. --- test/e2e/network/networking.go | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/test/e2e/network/networking.go b/test/e2e/network/networking.go index 4fbbe993404..993965495df 100644 --- a/test/e2e/network/networking.go +++ b/test/e2e/network/networking.go @@ -508,18 +508,6 @@ var _ = SIGDescribe("Networking", func() { }) - // Once basic tests checking for the sctp module not to be loaded are implemented, this - // needs to be marked as [Disruptive] - ginkgo.It("should function for pod-pod: sctp [Feature:SCTPConnectivity][Disruptive]", func() { - config := e2enetwork.NewNetworkingTestConfig(f, e2enetwork.EnableSCTP) - ginkgo.By(fmt.Sprintf("dialing(sctp) %v --> %v:%v (config.clusterIP)", config.TestContainerPod.Name, config.ClusterIP, e2enetwork.ClusterSCTPPort)) - message := "hello" - err := config.DialEchoFromTestContainer("sctp", config.TestContainerPod.Status.PodIP, e2enetwork.EndpointSCTPPort, config.MaxTries, 0, message) - if err != nil { - framework.Failf("failed dialing endpoint, %v", err) - } - }) - ginkgo.It("should recreate its iptables rules if they are deleted [Disruptive]", func() { e2eskipper.SkipUnlessProviderIs(framework.ProvidersWithSSH...) e2eskipper.SkipUnlessSSHKeyPresent()