Signed-off-by: Owen Williams <owen.williams@grafana.com>
This commit is contained in:
Owen Williams 2026-04-14 10:01:29 -04:00
parent 693761ba6e
commit 62b4d1dc3f
No known key found for this signature in database
GPG Key ID: 711C61A216D34A69
2 changed files with 8 additions and 2 deletions

View File

@ -129,6 +129,7 @@ var (
}
)
//nolint:godot
/*
go test ./tsdb/record/... \
-run '^$' -bench '^BenchmarkEncode_Samples' \
@ -172,6 +173,7 @@ func BenchmarkEncode_Samples(b *testing.B) {
}
}
//nolint:godot
/*
go test ./tsdb/record/... \
-run '^$' -bench '^BenchmarkDecode_Samples' \
@ -225,6 +227,7 @@ var (
histCounts = testrecord.HistCounts
)
//nolint:godot
/*
go test ./tsdb/record/... \
-run '^$' -bench '^BenchmarkEncode_Histograms' \
@ -280,6 +283,7 @@ func BenchmarkEncode_Histograms(b *testing.B) {
}
}
//nolint:godot
/*
go test ./tsdb/record/... \
-run '^$' -bench '^BenchmarkDecode_Histograms' \
@ -336,6 +340,7 @@ func BenchmarkDecode_Histograms(b *testing.B) {
}
}
//nolint:godot
/*
go test ./tsdb/record/... \
-run '^$' -bench '^BenchmarkEncode_FloatHistograms' \
@ -391,6 +396,7 @@ func BenchmarkEncode_FloatHistograms(b *testing.B) {
}
}
//nolint:godot
/*
go test ./tsdb/record/... \
-run '^$' -bench '^BenchmarkDecode_FloatHistograms' \

View File

@ -486,8 +486,8 @@ func TestRecord_MixedRegularAndCustomBucketHistogramPermutations(t *testing.T) {
sts []int64
}
type tc struct {
name string
kinds []string
name string
kinds []string
}
testCases := []tc{