aboutsummaryrefslogtreecommitdiff
path: root/cmd/bolt/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/bolt/main.go')
-rw-r--r--cmd/bolt/main.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/cmd/bolt/main.go b/cmd/bolt/main.go
index 009bdc5..19df59f 100644
--- a/cmd/bolt/main.go
+++ b/cmd/bolt/main.go
@@ -107,7 +107,8 @@ func NewApp() *cli.App {
Name: "bench",
Usage: "Run benchmarks on a given dataset",
Action: func(c *cli.Context) {
- Bench()
+ srcPath := c.Args().Get(0)
+ Bench(srcPath, "read", "sequential", 1)
},
},
}