Skip to content

Commit

Permalink
Merge pull request #2198 from AkihiroSuda/criu-master
Browse files Browse the repository at this point in the history
temporarily disable CRIU tests
  • Loading branch information
hqhq authored Jan 14, 2020
2 parents 5cc0dea + 55f8c25 commit 709377c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
5 changes: 5 additions & 0 deletions libcontainer/cgroups/fs2/fs2.go
Original file line number Diff line number Diff line change
Expand Up @@ -205,5 +205,10 @@ func (m *manager) Set(container *configs.Config) error {
if len(errs) > 0 && !m.rootless {
return errors.Errorf("error while setting cgroup v2: %+v", errs)
}
m.config = container.Cgroups
return nil
}

func (m *manager) GetCgroups() (*configs.Cgroup, error) {
return m.config, nil
}
2 changes: 2 additions & 0 deletions libcontainer/integration/checkpoint_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ func showFile(t *testing.T, fname string) error {
}

func TestUsernsCheckpoint(t *testing.T) {
t.Skip("Ubuntu kernel is broken to run criu (#2196, #2198)")
if _, err := os.Stat("/proc/self/ns/user"); os.IsNotExist(err) {
t.Skip("userns is unsupported")
}
Expand All @@ -53,6 +54,7 @@ func TestUsernsCheckpoint(t *testing.T) {
}

func TestCheckpoint(t *testing.T) {
t.Skip("Ubuntu kernel is broken to run criu (#2196, #2198)")
testCheckpoint(t, false)
}

Expand Down

0 comments on commit 709377c

Please sign in to comment.