changeset 25542:6d937c49d935

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.
author Pierre-Yves David <pierre-yves.david@fb.com>
date Tue, 09 Jun 2015 21:10:44 -0700
parents 80ce5bce281f
children 36336cc8cfab
files contrib/revsetbenchmarks.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/contrib/revsetbenchmarks.py	Tue Jun 09 21:20:54 2015 -0700
+++ b/contrib/revsetbenchmarks.py	Tue Jun 09 21:10:44 2015 -0700
@@ -16,7 +16,7 @@
 # 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)