diff --git a/test/e2e/checkpoint_test.go b/test/e2e/checkpoint_test.go index 1498b4fa50..774c82109f 100644 --- a/test/e2e/checkpoint_test.go +++ b/test/e2e/checkpoint_test.go @@ -977,6 +977,9 @@ var _ = Describe("Podman checkpoint", func() { }) It("podman checkpoint container with --pre-checkpoint", func() { + if podmanTest.Host.Arch == "arm64" { + Skip("skip on arm64/aarch64, checkpoint-restore/criu GH issue #2676") + } SkipIfContainerized("FIXME: #24230 - no longer works in container testing") if !criu.MemTrack() { Skip("system (architecture/kernel/CRIU) does not support memory tracking") @@ -1010,6 +1013,9 @@ var _ = Describe("Podman checkpoint", func() { }) It("podman checkpoint container with --pre-checkpoint and export (migration)", func() { + if podmanTest.Host.Arch == "arm64" { + Skip("skip on arm64/aarch64, checkpoint-restore/criu GH issue #2676") + } SkipIfContainerized("FIXME: #24230 - no longer works in container testing") SkipIfRemote("--import-previous is not yet supported on the remote client") if !criu.MemTrack() {