Closed
Description
When a user supplied high testing.count
parameter, they want to look at the statistics in addition to a long stream of numbers in the output.
PoC code available in #34479 along with sample output.
The main reason to do this inside go test
is the prettyPrint
output which causes loss of precision in any tool that computes the statistics based on the output.
The PoC computes mean
and 95% Confidence Interval
for any benchmark with the count at or higher than 5
. I believe those are reasonable defaults and do not propose to make them configurable.
If this proposal is accepted I can complete the PoC code reasonably fast.