From 004e6ced7650eb42c94523724688d3a47f143422 Mon Sep 17 00:00:00 2001 From: ByoungUk Lee Date: Wed, 1 Oct 2025 15:09:39 +0900 Subject: [PATCH] test: remove outdated skip in podman run check personality support test Signed-off-by: ByoungUk Lee --- test/e2e/run_test.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/test/e2e/run_test.go b/test/e2e/run_test.go index 38576c9b64..a62e9279da 100644 --- a/test/e2e/run_test.go +++ b/test/e2e/run_test.go @@ -2324,10 +2324,6 @@ WORKDIR /madethis`, BB) }) It("podman run check personality support", func() { - // TODO: Remove this as soon as this is merged and made available in our CI https://github.com/opencontainers/runc/pull/3126. - if !strings.Contains(podmanTest.OCIRuntime, "crun") { - Skip("Test only works on crun") - } session := podmanTest.Podman([]string{"run", "--personality=LINUX32", "--name=testpersonality", ALPINE, "uname", "-a"}) session.WaitWithDefaultTimeout() Expect(session).Should(ExitCleanly())