From 48cdf1fe2c6de3c2f2eebdbdd5ee8bf49c8696e6 Mon Sep 17 00:00:00 2001 From: Rodrigo Campos Date: Tue, 11 Jul 2023 14:39:51 +0200 Subject: [PATCH] integration: Enable userns tests for sbserver Now we ported support to sbserver, let's enable the e2e tests there too. Signed-off-by: Rodrigo Campos --- integration/pod_userns_linux_test.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/integration/pod_userns_linux_test.go b/integration/pod_userns_linux_test.go index b020d64ae..e0a561433 100644 --- a/integration/pod_userns_linux_test.go +++ b/integration/pod_userns_linux_test.go @@ -94,9 +94,6 @@ func TestPodUserNS(t *testing.T) { }, } { t.Run(name, func(t *testing.T) { - if os.Getenv("ENABLE_CRI_SANDBOXES") == "'sandboxed'" { - t.Skip("skipping test: userns not supported/needed in sanboxed runtimes") - } cmd := exec.Command("true") cmd.SysProcAttr = &syscall.SysProcAttr{ Cloneflags: syscall.CLONE_NEWUSER,