hubolib: Add 10k pages as a benchmark variant

This commit is contained in:
Bjørn Erik Pedersen 2017-05-31 14:48:49 +03:00
parent d25d89e653
commit 9fa71c945e

View file

@ -45,7 +45,7 @@ func BenchmarkSiteBuilding(b *testing.B) {
conf.RootSections = rootSections
for _, tagsPerPage := range []int{0, 1, 5, 20} {
conf.TagsPerPage = tagsPerPage
for _, numPages := range []int{10, 100, 500, 1000, 5000} {
for _, numPages := range []int{10, 100, 500, 1000, 5000, 10000} {
conf.NumPages = numPages
for _, render := range []bool{false, true} {
conf.Render = render