mirror of
https://github.com/restic/restic.git
synced 2025-10-28 02:14:15 +00:00
Refactor debug into debug module
This commit is contained in:
26
cmd/ram/main.go
Normal file
26
cmd/ram/main.go
Normal file
@@ -0,0 +1,26 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"os"
|
||||
|
||||
"github.com/restic/restic"
|
||||
)
|
||||
|
||||
func main() {
|
||||
max := int(1e6)
|
||||
nodes := make([]*restic.Node, 0, max)
|
||||
|
||||
fi, err := os.Lstat("main.go")
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
|
||||
for i := 0; i < max; i++ {
|
||||
node, err := restic.NodeFromFileInfo("main.go", fi)
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
|
||||
nodes = append(nodes, node)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user