summaryrefslogtreecommitdiffstats
path: root/commands/benchmark.go
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2016-01-27 22:28:05 +0100
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2016-01-27 22:28:05 +0100
commit12876ec991982de27773d127e2030b1eeb2826b2 (patch)
tree290fc7596add90acf7dab974ef5bcb074e9171a8 /commands/benchmark.go
parentd08e4c87a72f57a836722700900690857a4225cb (diff)
Fix hugo benchmark
Appending to the site 13 times doesn't sound realistic.
Diffstat (limited to 'commands/benchmark.go')
-rw-r--r--commands/benchmark.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/commands/benchmark.go b/commands/benchmark.go
index 4803bdc04..7e746535f 100644
--- a/commands/benchmark.go
+++ b/commands/benchmark.go
@@ -53,6 +53,7 @@ func benchmark(cmd *cobra.Command, args []string) error {
return err
}
for i := 0; i < benchmarkTimes; i++ {
+ mainSite = nil
_ = buildSite()
}
pprof.WriteHeapProfile(f)
@@ -71,6 +72,7 @@ func benchmark(cmd *cobra.Command, args []string) error {
pprof.StartCPUProfile(f)
defer pprof.StopCPUProfile()
for i := 0; i < benchmarkTimes; i++ {
+ mainSite = nil
_ = buildSite()
}
}