From: Bjørn Erik Pedersen Date: Thu, 16 Nov 2017 00:13:07 +0000 (+0100) Subject: tplimpl: Make partial benchmarks use RunParallel X-Git-Tag: v0.31~19 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=7730d683e8b030c64c5f986b8166c8e65b777ab3;p=brevno-suite%2Fhugo tplimpl: Make partial benchmarks use RunParallel See #4086 --- diff --git a/tpl/tplimpl/template_funcs_test.go b/tpl/tplimpl/template_funcs_test.go index 546effdf..32f1a1a7 100644 --- a/tpl/tplimpl/template_funcs_test.go +++ b/tpl/tplimpl/template_funcs_test.go @@ -194,11 +194,13 @@ func doBenchmarkPartial(b *testing.B, f func(ns *partials.Namespace) error) { ns := partials.New(de) b.ResetTimer() - for i := 0; i < b.N; i++ { - if err := f(ns); err != nil { - b.Fatalf("error executing template: %s", err) + b.RunParallel(func(pb *testing.PB) { + for pb.Next() { + if err := f(ns); err != nil { + b.Fatalf("error executing template: %s", err) + } } - } + }) } func newTestFuncster() *templateFuncster {