mirror of
https://github.com/restic/restic.git
synced 2024-12-23 16:26:11 +00:00
backend: Improve TestList
This commit is contained in:
parent
835ba16c27
commit
4c6b626db6
1 changed files with 8 additions and 7 deletions
|
@ -267,8 +267,7 @@ func (s *Suite) TestList(t *testing.T) {
|
||||||
var tests = []struct {
|
var tests = []struct {
|
||||||
maxItems int
|
maxItems int
|
||||||
}{
|
}{
|
||||||
{3}, {8}, {11}, {13}, {23},
|
{11}, {23}, {numTestFiles}, {numTestFiles + 10}, {numTestFiles + 1123},
|
||||||
{numTestFiles}, {numTestFiles + 7}, {numTestFiles + 10}, {numTestFiles + 1123},
|
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, test := range tests {
|
for _, test := range tests {
|
||||||
|
@ -302,12 +301,14 @@ func (s *Suite) TestList(t *testing.T) {
|
||||||
}
|
}
|
||||||
|
|
||||||
t.Logf("remove %d files", numTestFiles)
|
t.Logf("remove %d files", numTestFiles)
|
||||||
|
handles := make([]restic.Handle, 0, len(list1))
|
||||||
for id := range list1 {
|
for id := range list1 {
|
||||||
h := restic.Handle{Type: restic.DataFile, Name: id.String()}
|
handles = append(handles, restic.Handle{Type: restic.DataFile, Name: id.String()})
|
||||||
err := s.delayedRemove(t, b, h)
|
}
|
||||||
if err != nil {
|
|
||||||
t.Fatal(err)
|
err := s.delayedRemove(t, b, handles...)
|
||||||
}
|
if err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue