##// END OF EJS Templates
revsetbenchmarks: use combination variants in default set...
Pierre-Yves David -
r25544:e66f1707 default
parent child Browse files
Show More
@@ -16,7 +16,9 b' from subprocess import check_call, Popen'
16 # cannot use argparse, python 2.7 only
16 # cannot use argparse, python 2.7 only
17 from optparse import OptionParser
17 from optparse import OptionParser
18
18
19 DEFAULTVARIANTS = ['plain', 'min', 'max', 'first', 'last', 'reverse', 'sort']
19 DEFAULTVARIANTS = ['plain', 'min', 'max', 'first', 'last',
20 'reverse', 'reverse+first', 'reverse+last',
21 'sort', 'sort+first', 'sort+last']
20
22
21 def check_output(*args, **kwargs):
23 def check_output(*args, **kwargs):
22 kwargs.setdefault('stderr', PIPE)
24 kwargs.setdefault('stderr', PIPE)
General Comments 0
You need to be logged in to leave comments. Login now