# HG changeset patch # User Pierre-Yves David <pierre-yves.david@octobus.net> # Date 1542944253 -3600 # Fri Nov 23 04:37:33 2018 +0100 # Node ID 4fafef4c9eae619f8e4bbc92567118ca8d430b13 # Parent 8db929b94913620b05973b3dd19fd3e905816932 benchmark: add a test for perfbranchmapload We have considated the command and would like to get report from it now. diff --git a/benchmarks/others.py b/benchmarks/others.py --- a/benchmarks/others.py +++ b/benchmarks/others.py @@ -377,3 +377,27 @@ cmd.append('--no-clear-revlogs') data = self.perfextjson(*cmd) return data[None]['median'] + +class PerfBranchmapLoadSuite(BaseTestSuite): + params = BaseTestSuite.params + [['cold', 'warm']] + param_names = BaseTestSuite.param_names + ['changelog'] + + timeout = 300 + + @params_as_kwargs + def track_perfbranchmap_load(self, changelog, *args, **kwargs): + if changelog == 'warm': + clearcache = False + elif changelog == 'cold': + clearcache = True + else: + assert False + cmd = ['perfbranchmapload'] + if clearcache: + cmd.append('--clear-revlogs') + else: + cmd.append('--no-clear-revlogs') + data = self.perfextjson(*cmd) + if None not in data: + return float('nan') + return data[None]['median']