Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
  • Loading branch information
kolyshkin committed Jun 6, 2024
1 parent 3b91eca commit 1ed5fa1
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions libcontainer/integration/checkpoint_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,13 @@ func testCheckpoint(t *testing.T, userns bool) {

config := newTemplateConfig(t, &tParam{userns: userns})
stateDir := t.TempDir()
defer func() {
out, err := exec.Command("fuser", "-vm", stateDir+"/dev").CombinedOutput()
t.Logf("%s", out)
if err != nil {
t.Logf("exec: %v", err)
}
}()

container, err := libcontainer.Create(stateDir, "test", config)
ok(t, err)
Expand Down

0 comments on commit 1ed5fa1

Please sign in to comment.