# HG changeset patch # User Pierre-Yves David # Date 2015-06-10 06:49:07 # Node ID e66f1707ba6c9406851e1541fc182cbec2e51755 # Parent 36336cc8cfab1d88bffff3ae876d4b5a14dfc932 revsetbenchmarks: use combination variants in default set Now that we have them, let's make use of them. diff --git a/contrib/revsetbenchmarks.py b/contrib/revsetbenchmarks.py --- a/contrib/revsetbenchmarks.py +++ b/contrib/revsetbenchmarks.py @@ -16,7 +16,9 @@ from subprocess import check_call, Popen # cannot use argparse, python 2.7 only from optparse import OptionParser -DEFAULTVARIANTS = ['plain', 'min', 'max', 'first', 'last', 'reverse', 'sort'] +DEFAULTVARIANTS = ['plain', 'min', 'max', 'first', 'last', + 'reverse', 'reverse+first', 'reverse+last', + 'sort', 'sort+first', 'sort+last'] def check_output(*args, **kwargs): kwargs.setdefault('stderr', PIPE)