From 46aa8b83a48f0683636c15484caeef1a04bd5cdc Mon Sep 17 00:00:00 2001 From: Paul Holzinger Date: Tue, 21 Apr 2026 20:07:37 +0200 Subject: [PATCH 1/2] test: remove outdated checkpoint skip This should work again with the latest VM images. Fixes: #26289 Signed-off-by: Paul Holzinger --- test/e2e/checkpoint_test.go | 5 ----- test/system/520-checkpoint.bats | 1 - 2 files changed, 6 deletions(-) diff --git a/test/e2e/checkpoint_test.go b/test/e2e/checkpoint_test.go index cd76ff003f..039a9db370 100644 --- a/test/e2e/checkpoint_test.go +++ b/test/e2e/checkpoint_test.go @@ -336,7 +336,6 @@ var _ = Describe("Podman checkpoint", func() { }) It("podman checkpoint container with established tcp connections", func() { - Skip("FIXME: #26289 - Rawhide only issue, skip for now") localRunString := getRunString([]string{REDIS_IMAGE}) session := podmanTest.Podman(localRunString) session.WaitWithDefaultTimeout() @@ -406,8 +405,6 @@ var _ = Describe("Podman checkpoint", func() { }) It("podman restore container with tcp-close", func() { - Skip("FIXME: #26289 - Rawhide only issue, skip for now") - // Start a container with redis (which listens on tcp port) localRunString := getRunString([]string{REDIS_IMAGE}) session := podmanTest.Podman(localRunString) @@ -1113,7 +1110,6 @@ var _ = Describe("Podman checkpoint", func() { }) It("podman checkpoint and restore container with different port mappings", func() { - Skip("FIXME: #26289 - Rawhide only issue, skip for now") randomPort, err := utils.GetRandomPort() Expect(err).ShouldNot(HaveOccurred()) localRunString := getRunString([]string{"-p", fmt.Sprintf("%d:6379", randomPort), "--rm", REDIS_IMAGE}) @@ -1417,7 +1413,6 @@ var _ = Describe("Podman checkpoint", func() { }) It("podman checkpoint and restore containers with --print-stats", func() { - Skip("FIXME: #26289 - Rawhide only issue, skip for now") session1 := podmanTest.Podman(getRunString([]string{REDIS_IMAGE})) session1.WaitWithDefaultTimeout() Expect(session1).Should(ExitCleanly()) diff --git a/test/system/520-checkpoint.bats b/test/system/520-checkpoint.bats index 07c8cb9ce2..2615971135 100644 --- a/test/system/520-checkpoint.bats +++ b/test/system/520-checkpoint.bats @@ -134,7 +134,6 @@ function setup() { # bats test_tags=ci:parallel @test "podman checkpoint --export, with volumes" { - skip "FIXME: #26289 - Rawhide only issue, skip for now" skip_if_remote "Test uses --root/--runroot, which are N/A over remote" local p_opts="$(podman_isolation_opts ${PODMAN_TMPDIR}) --events-backend file" From d01cd46830ce78d7258e09d2f9ec37f9791bc7f2 Mon Sep 17 00:00:00 2001 From: Paul Holzinger Date: Thu, 23 Apr 2026 20:48:55 +0200 Subject: [PATCH 2/2] test/system: skip podman checkpoint --export, with volumes on aarch64 It fails due some selinux problem, #28576. Signed-off-by: Paul Holzinger --- test/system/520-checkpoint.bats | 1 + 1 file changed, 1 insertion(+) diff --git a/test/system/520-checkpoint.bats b/test/system/520-checkpoint.bats index 2615971135..41701768d4 100644 --- a/test/system/520-checkpoint.bats +++ b/test/system/520-checkpoint.bats @@ -134,6 +134,7 @@ function setup() { # bats test_tags=ci:parallel @test "podman checkpoint --export, with volumes" { + skip_if_aarch64 "FIXME #28576: selinux problem only on aarch64" skip_if_remote "Test uses --root/--runroot, which are N/A over remote" local p_opts="$(podman_isolation_opts ${PODMAN_TMPDIR}) --events-backend file"