From 85c7578313cab7e5b9a946e8c166e16c13074275 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Erik=20Pedersen?= Date: Sat, 14 Jan 2017 12:39:52 +0100 Subject: [PATCH] tpl: Fix broken benchmarks But that did not explain issue #2935: ``` BenchmarkPartial-4 200000 6452 ns/op 1040 B/op 30 allocs/op BenchmarkPartialCached-4 500000 4104 ns/op 544 B/op 14 allocs/op BenchmarkPartialCachedVariants-4 500000 3398 ns/op 624 B/op 17 allocs/op ``` --- tpl/template_funcs_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tpl/template_funcs_test.go b/tpl/template_funcs_test.go index 6bbbf0146..e0c185092 100644 --- a/tpl/template_funcs_test.go +++ b/tpl/template_funcs_test.go @@ -2833,6 +2833,7 @@ func TestPartialCached(t *testing.T) { } func BenchmarkPartial(b *testing.B) { + tstInitTemplates() tmpl, err := New(logger).New("testroot").Parse(`{{ partial "bench1" . }}`) if err != nil { b.Fatalf("unable to create new html template: %s", err) @@ -2852,6 +2853,7 @@ func BenchmarkPartial(b *testing.B) { } func BenchmarkPartialCached(b *testing.B) { + tstInitTemplates() tmpl, err := New(logger).New("testroot").Parse(`{{ partialCached "bench1" . }}`) if err != nil { b.Fatalf("unable to create new html template: %s", err)