mirror of
https://github.com/restic/restic.git
synced 2025-12-03 22:11:47 +00:00
test: Use testing.T.Cleanup to remove tempdirs
This commit is contained in:
10
internal/cache/file_test.go
vendored
10
internal/cache/file_test.go
vendored
@@ -87,8 +87,7 @@ func TestFiles(t *testing.T) {
|
||||
t.Logf("seed is %v", seed)
|
||||
rand.Seed(seed)
|
||||
|
||||
c, cleanup := TestNewCache(t)
|
||||
defer cleanup()
|
||||
c := TestNewCache(t)
|
||||
|
||||
var tests = []restic.FileType{
|
||||
restic.SnapshotFile,
|
||||
@@ -140,8 +139,7 @@ func TestFileLoad(t *testing.T) {
|
||||
t.Logf("seed is %v", seed)
|
||||
rand.Seed(seed)
|
||||
|
||||
c, cleanup := TestNewCache(t)
|
||||
defer cleanup()
|
||||
c := TestNewCache(t)
|
||||
|
||||
// save about 5 MiB of data in the cache
|
||||
data := test.Random(rand.Int(), 5234142)
|
||||
@@ -223,10 +221,8 @@ func TestFileSaveConcurrent(t *testing.T) {
|
||||
|
||||
const nproc = 40
|
||||
|
||||
c, cleanup := TestNewCache(t)
|
||||
defer cleanup()
|
||||
|
||||
var (
|
||||
c = TestNewCache(t)
|
||||
data = test.Random(1, 10000)
|
||||
g errgroup.Group
|
||||
id restic.ID
|
||||
|
||||
Reference in New Issue
Block a user