From d94808665cb4ac432cb3c2fa8fcf0c9d5a4ac5c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=A8=E5=86=9B10092085?= Date: Fri, 12 Dec 2025 14:57:36 +0800 Subject: [PATCH] e2e test cases should support seccomp default, which is unconfined [LinuxOnly]. Execution failed. --- test/e2e/node/security_context.go | 6 ------ 1 file changed, 6 deletions(-) diff --git a/test/e2e/node/security_context.go b/test/e2e/node/security_context.go index b4ccd5d10ba..187289f7035 100644 --- a/test/e2e/node/security_context.go +++ b/test/e2e/node/security_context.go @@ -219,12 +219,6 @@ var _ = SIGDescribe("Security Context", func() { pod.Spec.Containers[0].Command = []string{"grep", SeccompProcStatusField, ProcSelfStatusPath} e2eoutput.TestContainerOutput(ctx, f, "seccomp runtime/default", pod, 0, []string{"2"}) // seccomp filtered }) - - ginkgo.It("should support seccomp default which is unconfined [LinuxOnly]", func(ctx context.Context) { - pod := scTestPod(false, false) - pod.Spec.Containers[0].Command = []string{"grep", SeccompProcStatusField, ProcSelfStatusPath} - e2eoutput.TestContainerOutput(ctx, f, "seccomp default unconfined", pod, 0, []string{"0"}) // seccomp disabled - }) }) func testPodSELinuxLabeling(ctx context.Context, f *framework.Framework, hostIPC bool, hostPID bool) {