containerd/snapshot/common_test.go
Samuel Karp 2c36c387de snapshot: Fix leaked mounts and temp directories
Signed-off-by: Samuel Karp <skarp@amazon.com>
2017-01-12 01:12:37 +00:00

24 lines
424 B
Go

package snapshot
import (
"os/exec"
"testing"
"github.com/docker/containerd"
)
func unmountAll(t *testing.T, mounts []containerd.Mount) {
for _, mount := range mounts {
unmount(t, mount.Target)
}
}
func unmount(t *testing.T, mountPoint string) {
t.Log("unmount", mountPoint)
umount := exec.Command("umount", mountPoint)
err := umount.Run()
if err != nil {
t.Error("Could not umount", mountPoint, err)
}
}