# HG changeset patch # User Pierre-Yves David # Date 2015-06-10 04:10:44 # Node ID 6d937c49d935cfac3a688b87e4e725af0c834fe1 # Parent 80ce5bce281fac9058377aa548ce45e4963867a6 revsetbenchmarks: use many more variants by default So far the variants feature was introduced, but not used by default. We now use a set of basic variants by default. diff --git a/contrib/revsetbenchmarks.py b/contrib/revsetbenchmarks.py --- a/contrib/revsetbenchmarks.py +++ b/contrib/revsetbenchmarks.py @@ -16,7 +16,7 @@ from subprocess import check_call, Popen # cannot use argparse, python 2.7 only from optparse import OptionParser -DEFAULTVARIANTS = ['plain'] +DEFAULTVARIANTS = ['plain', 'min', 'max', 'first', 'last', 'reverse', 'sort'] def check_output(*args, **kwargs): kwargs.setdefault('stderr', PIPE)