mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-08-10 20:42:26 +00:00
Re-enable flaky tests
This commit is contained in:
parent
e4542e2c67
commit
c6d6dcfa1e
@ -199,7 +199,7 @@ var _ = framework.KubeDescribe("Port forwarding", func() {
|
|||||||
f := framework.NewDefaultFramework("port-forwarding")
|
f := framework.NewDefaultFramework("port-forwarding")
|
||||||
|
|
||||||
framework.KubeDescribe("With a server that expects a client request", func() {
|
framework.KubeDescribe("With a server that expects a client request", func() {
|
||||||
It("should support a client that connects, sends no data, and disconnects [Conformance] [Flaky]", func() {
|
It("should support a client that connects, sends no data, and disconnects [Conformance]", func() {
|
||||||
By("creating the target pod")
|
By("creating the target pod")
|
||||||
pod := pfPod("abc", "1", "1", "1")
|
pod := pfPod("abc", "1", "1", "1")
|
||||||
if _, err := f.ClientSet.Core().Pods(f.Namespace.Name).Create(pod); err != nil {
|
if _, err := f.ClientSet.Core().Pods(f.Namespace.Name).Create(pod); err != nil {
|
||||||
@ -244,7 +244,7 @@ var _ = framework.KubeDescribe("Port forwarding", func() {
|
|||||||
verifyLogMessage(logOutput, "Expected to read 3 bytes from client, but got 0 instead")
|
verifyLogMessage(logOutput, "Expected to read 3 bytes from client, but got 0 instead")
|
||||||
})
|
})
|
||||||
|
|
||||||
It("should support a client that connects, sends data, and disconnects [Conformance] [Flaky]", func() {
|
It("should support a client that connects, sends data, and disconnects [Conformance]", func() {
|
||||||
By("creating the target pod")
|
By("creating the target pod")
|
||||||
pod := pfPod("abc", "10", "10", "100")
|
pod := pfPod("abc", "10", "10", "100")
|
||||||
if _, err := f.ClientSet.Core().Pods(f.Namespace.Name).Create(pod); err != nil {
|
if _, err := f.ClientSet.Core().Pods(f.Namespace.Name).Create(pod); err != nil {
|
||||||
@ -312,7 +312,7 @@ var _ = framework.KubeDescribe("Port forwarding", func() {
|
|||||||
})
|
})
|
||||||
})
|
})
|
||||||
framework.KubeDescribe("With a server that expects no client request", func() {
|
framework.KubeDescribe("With a server that expects no client request", func() {
|
||||||
It("should support a client that connects, sends no data, and disconnects [Conformance] [Flaky]", func() {
|
It("should support a client that connects, sends no data, and disconnects [Conformance]", func() {
|
||||||
By("creating the target pod")
|
By("creating the target pod")
|
||||||
pod := pfPod("", "10", "10", "100")
|
pod := pfPod("", "10", "10", "100")
|
||||||
if _, err := f.ClientSet.Core().Pods(f.Namespace.Name).Create(pod); err != nil {
|
if _, err := f.ClientSet.Core().Pods(f.Namespace.Name).Create(pod); err != nil {
|
||||||
|
Loading…
Reference in New Issue
Block a user