Skip to content

Commit

Permalink
[debug] temp skip on ARM
Browse files Browse the repository at this point in the history
Signed-off-by: Kir Kolyshkin <[email protected]>
  • Loading branch information
kolyshkin committed May 10, 2024
1 parent 5174a52 commit e4f3536
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions libcontainer/integration/checkpoint_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import (
"os/exec"
"path/filepath"
"regexp"
"runtime"
"strings"
"testing"

Expand All @@ -31,6 +32,10 @@ func testCheckpoint(t *testing.T, userns bool) {
return
}

if strings.HasPrefix(runtime.GOARCH, "arm") {
t.Skip("temporary skipping on ARM (see issue XXX)")
}

if _, err := exec.LookPath("criu"); err != nil {
t.Skipf("criu binary not found: %v", err)
}
Expand Down

0 comments on commit e4f3536

Please sign in to comment.