Skip to content

Commit aae7d98

Browse files
authored
Merge pull request #127 from AkihiroSuda/sync-testutil
testutil: sync with containerd
2 parents f04dbc0 + f768f56 commit aae7d98

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

testutil/loopback_linux.go

+3
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ func NewLoopback(size int64) (string, func() error, error) {
3737
}
3838

3939
if err := file.Truncate(size); err != nil {
40+
file.Close()
41+
os.Remove(file.Name())
4042
return "", nil, errors.Wrap(err, "failed to resize temp file")
4143
}
4244
file.Close()
@@ -45,6 +47,7 @@ func NewLoopback(size int64) (string, func() error, error) {
4547
losetup := exec.Command("losetup", "--find", "--show", file.Name())
4648
p, err := losetup.Output()
4749
if err != nil {
50+
os.Remove(file.Name())
4851
return "", nil, errors.Wrap(err, "loopback setup failed")
4952
}
5053

0 commit comments

Comments
 (0)