# HG changeset patch # User Pierre-Yves David # Date 2017-05-23 00:27:41 # Node ID e36569bd9e289ae55c1accdde85f7e43577367dd # Parent 6f791ca70640cabb44cd46e75bb5d50b41c8be7b perfphases: add a flag to also include file access time The flag purges all phases data so we'll have to read the file from disk again. diff --git a/contrib/perf.py b/contrib/perf.py --- a/contrib/perf.py +++ b/contrib/perf.py @@ -591,12 +591,19 @@ def perfpathcopies(ui, repo, rev1, rev2, timer(d) fm.end() -@command('perfphases', [], "") +@command('perfphases', + [('', 'full', False, 'include file reading time too'), + ], "") def perfphases(ui, repo, **opts): """benchmark phasesets computation""" timer, fm = gettimer(ui, opts) - phases = repo._phasecache + _phases = repo._phasecache + full = opts.get('full') def d(): + phases = _phases + if full: + clearfilecache(repo, '_phasecache') + phases = repo._phasecache phases.invalidate() phases.loadphaserevs(repo) timer(d)