(t *testing.T)
| 196 | } |
| 197 | |
| 198 | func TestUnmountRecursive(t *testing.T) { |
| 199 | testutil.RequiresRoot(t) |
| 200 | |
| 201 | target, _ := setupMounts(t) |
| 202 | if err := UnmountRecursive(target, 0); err != nil { |
| 203 | t.Fatal(err) |
| 204 | } |
| 205 | } |
| 206 | |
| 207 | func TestDoPrepareIDMappedOverlayCleanups(t *testing.T) { |
| 208 | testutil.RequiresRoot(t) |
nothing calls this directly
no test coverage detected
searching dependent graphs…