mirror of
https://github.com/octoleo/restic.git
synced 2024-11-02 11:46:36 +00:00
28 lines
374 B
Go
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)
|
|
}
|
|
}
|