comparison mx/commands.py @ 11368:c64d90e962ed

fixed regression in bench command
author Doug Simon <doug.simon@oracle.com>
date Tue, 20 Aug 2013 07:59:52 +0200
parents 39b86b83ddeb
children 74414b248381
comparison
equal deleted inserted replaced
11367:39b86b83ddeb 11368:c64d90e962ed
1149 #Bootstrap 1149 #Bootstrap
1150 if ('bootstrap' in args or 'all' in args): 1150 if ('bootstrap' in args or 'all' in args):
1151 benchmarks += sanitycheck.getBootstraps() 1151 benchmarks += sanitycheck.getBootstraps()
1152 #SPECjvm2008 1152 #SPECjvm2008
1153 if ('specjvm2008' in args or 'all' in args): 1153 if ('specjvm2008' in args or 'all' in args):
1154 benchmarks += [sanitycheck.getSPECjvm2008([], False, True, 120, 120)] 1154 benchmarks += [sanitycheck.getSPECjvm2008(['-ikv', '-wt', 120, '-it', 120])]
1155 else: 1155 else:
1156 specjvms = benchmarks_in_group('specjvm2008') 1156 specjvms = benchmarks_in_group('specjvm2008')
1157 for specjvm in specjvms: 1157 for specjvm in specjvms:
1158 benchmarks += [sanitycheck.getSPECjvm2008([specjvm], False, True, 120, 120)] 1158 benchmarks += [sanitycheck.getSPECjvm2008(['-ikv', '-wt', 120, '-it', 120, specjvm])]
1159 1159
1160 if ('specjbb2005' in args or 'all' in args): 1160 if ('specjbb2005' in args or 'all' in args):
1161 benchmarks += [sanitycheck.getSPECjbb2005()] 1161 benchmarks += [sanitycheck.getSPECjbb2005()]
1162 1162
1163 if ('specjbb2013' in args): # or 'all' in args //currently not in default set 1163 if ('specjbb2013' in args): # or 'all' in args //currently not in default set