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

revsetbenchmarks: extract call to mercurial into a function

This is a gratuitous change to make the code easier to look at.
parent 262e6ad9
No related branches found
No related tags found
No related merge requests found
......@@ -36,6 +36,20 @@
print >> sys.stderr, 'update to revision %s failed, aborting' % rev
sys.exit(exc.returncode)
def hg(cmd, repo=None):
"""run a mercurial command
<cmd> is the list of command + argument,
<repo> is an optional repository path to run this command in."""
fullcmd = ['./hg']
if repo is not None:
fullcmd += ['-R', repo]
fullcmd += ['--config',
'extensions.perf=' + os.path.join(contribdir, 'perf.py')]
fullcmd += cmd
return check_output(fullcmd, stderr=STDOUT)
def perf(revset, target=None):
"""run benchmark for this very revset"""
try:
......@@ -39,16 +53,7 @@
def perf(revset, target=None):
"""run benchmark for this very revset"""
try:
cmd = ['./hg',
'--config',
'extensions.perf='
+ os.path.join(contribdir, 'perf.py'),
'perfrevset',
revset]
if target is not None:
cmd.append('-R')
cmd.append(target)
output = check_output(cmd, stderr=STDOUT)
output = hg(['perfrevset', revset], repo=target)
output = output.lstrip('!') # remove useless ! in this context
return output.strip()
except CalledProcessError, exc:
......
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