Skip to content
Snippets Groups Projects
Commit f2f56b6e authored by Pierre-Yves David's avatar Pierre-Yves David :octopus:
Browse files

benchmark: add a test a new entry for `perfheads`

For large repository this computing heads is in the 10ms order of magnitude,
this is worth tracking.
parent fc1af90d
No related branches found
No related tags found
No related merge requests found
......@@ -430,3 +430,19 @@
if None not in data:
return float('nan')
return data[None]['median']
class PerfHeadsSuite(BaseTestSuite):
params = BaseTestSuite.params + [['unfiltered', 'visible']]
param_names = BaseTestSuite.param_names + ['filter']
timeout = 300
@params_as_kwargs
def track_perfheads(self, filter, *args, **kwargs):
cmd = ['perfheads']
if filter == 'unfiltered':
cmd.append('--hidden')
data = self.perfextjson(*cmd)
if None not in data:
return float('nan')
return data[None]['median']
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment