Mercurial > hg
changeset 25544:e66f1707ba6c
revsetbenchmarks: use combination variants in default set
Now that we have them, let's make use of them.
author | Pierre-Yves David <pierre-yves.david@fb.com> |
---|---|
date | Tue, 09 Jun 2015 23:49:07 -0700 |
parents | 36336cc8cfab |
children | 34d8d4930c88 |
files | contrib/revsetbenchmarks.py |
diffstat | 1 files changed, 3 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/contrib/revsetbenchmarks.py Tue Jun 09 23:45:34 2015 -0700 +++ b/contrib/revsetbenchmarks.py Tue Jun 09 23:49:07 2015 -0700 @@ -16,7 +16,9 @@ # 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)