mirror of
https://github.com/octoleo/restic.git
synced 2024-11-02 11:46:36 +00:00
local: Add benchmark
This commit is contained in:
parent
d24e0cc6cc
commit
e009c002ba
@ -10,8 +10,8 @@ import (
|
||||
. "restic/test"
|
||||
)
|
||||
|
||||
func TestBackend(t *testing.T) {
|
||||
suite := test.Suite{
|
||||
func newTestSuite(t testing.TB) *test.Suite {
|
||||
return &test.Suite{
|
||||
// NewConfig returns a config for a new temporary backend that will be used in tests.
|
||||
NewConfig: func() (interface{}, error) {
|
||||
dir, err := ioutil.TempDir(TestTempDir, "restic-test-local-")
|
||||
@ -50,6 +50,12 @@ func TestBackend(t *testing.T) {
|
||||
return nil
|
||||
},
|
||||
}
|
||||
|
||||
suite.RunTests(t)
|
||||
}
|
||||
|
||||
func TestBackend(t *testing.T) {
|
||||
newTestSuite(t).RunTests(t)
|
||||
}
|
||||
|
||||
func BenchmarkBackend(t *testing.B) {
|
||||
newTestSuite(t).RunBenchmarks(t)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user