Skip to content

Commit 82fcf45

Browse files
Merge pull request #26234 from lsm5/pre-checkpoint-skip-aarch64
e2e: skip pre-checkpoint tests on aarch64
2 parents 23ded8b + 5e7c0a6 commit 82fcf45

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

test/e2e/checkpoint_test.go

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -977,6 +977,9 @@ var _ = Describe("Podman checkpoint", func() {
977977
})
978978

979979
It("podman checkpoint container with --pre-checkpoint", func() {
980+
if podmanTest.Host.Arch == "arm64" {
981+
Skip("skip on arm64/aarch64, checkpoint-restore/criu GH issue #2676")
982+
}
980983
SkipIfContainerized("FIXME: #24230 - no longer works in container testing")
981984
if !criu.MemTrack() {
982985
Skip("system (architecture/kernel/CRIU) does not support memory tracking")
@@ -1010,6 +1013,9 @@ var _ = Describe("Podman checkpoint", func() {
10101013
})
10111014

10121015
It("podman checkpoint container with --pre-checkpoint and export (migration)", func() {
1016+
if podmanTest.Host.Arch == "arm64" {
1017+
Skip("skip on arm64/aarch64, checkpoint-restore/criu GH issue #2676")
1018+
}
10131019
SkipIfContainerized("FIXME: #24230 - no longer works in container testing")
10141020
SkipIfRemote("--import-previous is not yet supported on the remote client")
10151021
if !criu.MemTrack() {

0 commit comments

Comments
 (0)