# HG changeset patch # User Boris Feld # Date 1547478077 -3600 # Node ID 71ef4e923886b4d711b61c88d0f3f0f9ead20e54 # Parent 774b5195fac61586da950036f90fe03dac829941 revsetbenchmarks: support revset starting with a "-" Before this change, there was no strict separation between arguments and the benchmarked revset. This is easy to fix. diff -r 774b5195fac6 -r 71ef4e923886 contrib/revsetbenchmarks.py --- a/contrib/revsetbenchmarks.py Thu Jan 17 04:35:33 2019 -0500 +++ b/contrib/revsetbenchmarks.py Mon Jan 14 16:01:17 2019 +0100 @@ -56,9 +56,11 @@ def perf(revset, target=None, contexts=False): """run benchmark for this very revset""" try: - args = ['perfrevset', revset] + args = ['perfrevset'] if contexts: args.append('--contexts') + args.append('--') + args.append(revset) output = hg(args, repo=target) return parseoutput(output) except subprocess.CalledProcessError as exc: