Merge pull request #27205 from nimdrak/27115

test: remove outdated skip in podman run check personality support test
This commit is contained in:
openshift-merge-bot[bot]
2025-10-01 15:22:36 +00:00
committed by GitHub

View File

@ -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())