summaryrefslogtreecommitdiffstats
path: root/hugolib/hugo_sites.go
diff options
context:
space:
mode:
Diffstat (limited to 'hugolib/hugo_sites.go')
-rw-r--r--hugolib/hugo_sites.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/hugolib/hugo_sites.go b/hugolib/hugo_sites.go
index 91703091b..f1930fd71 100644
--- a/hugolib/hugo_sites.go
+++ b/hugolib/hugo_sites.go
@@ -117,6 +117,7 @@ func (h *HugoSites) getContentMaps() *pageMaps {
// Only used in tests.
type testCounters struct {
contentRenderCounter uint64
+ pageRenderCounter uint64
}
func (h *testCounters) IncrContentRender() {
@@ -126,6 +127,13 @@ func (h *testCounters) IncrContentRender() {
atomic.AddUint64(&h.contentRenderCounter, 1)
}
+func (h *testCounters) IncrPageRender() {
+ if h == nil {
+ return
+ }
+ atomic.AddUint64(&h.pageRenderCounter, 1)
+}
+
type fatalErrorHandler struct {
mu sync.Mutex