(thinDeviceName string)
| 278 | } |
| 279 | |
| 280 | func getMounts(thinDeviceName string) []mount.Mount { |
| 281 | return []mount.Mount{ |
| 282 | { |
| 283 | Source: dmsetup.GetFullDevicePath(thinDeviceName), |
| 284 | Type: "ext4", |
| 285 | }, |
| 286 | } |
| 287 | } |
| 288 | |
| 289 | func createLoopbackDevice(t *testing.T, dir string) (string, string) { |
| 290 | file, err := os.CreateTemp(dir, testsPrefix) |
no test coverage detected
searching dependent graphs…