2
2
mirror of https://github.com/octoleo/restic.git synced 2024-09-22 11:59:00 +00:00
restic/node_test.go
2015-05-01 23:52:36 +02:00

28 lines
374 B
Go

package restic
import (
"io/ioutil"
"testing"
)
func BenchmarkNodeFillUser(t *testing.B) {
tempfile, err := ioutil.TempFile("", "restic-test-temp-")
if err != nil {
t.Fatal(err)
}
fi, err := tempfile.Stat()
if err != nil {
t.Fatal(err)
}
node := &Node{}
path := tempfile.Name()
t.ResetTimer()
for i := 0; i < t.N; i++ {
node.fillExtra(path, fi)
}
}