comparison mx/commands.py @ 7730:cf27135ccf5b

Remove SPECjbb2013 from default benchmarks
author Gilles Duboscq <duboscq@ssw.jku.at>
date Tue, 05 Feb 2013 18:33:01 +0100
parents 9a521597686b
children 2d57a3bd82ab
comparison
equal deleted inserted replaced
7729:926635ea20ce 7730:cf27135ccf5b
964 benchmarks += [sanitycheck.getSPECjvm2008([specjvm], False, True, 120, 120)] 964 benchmarks += [sanitycheck.getSPECjvm2008([specjvm], False, True, 120, 120)]
965 965
966 if ('specjbb2005' in args or 'all' in args): 966 if ('specjbb2005' in args or 'all' in args):
967 benchmarks += [sanitycheck.getSPECjbb2005()] 967 benchmarks += [sanitycheck.getSPECjbb2005()]
968 968
969 if ('specjbb2013' in args or 'all' in args): 969 if ('specjbb2013' in args): # or 'all' in args //currently not in default set
970 benchmarks += [sanitycheck.getSPECjbb2013()] 970 benchmarks += [sanitycheck.getSPECjbb2013()]
971 971
972 for test in benchmarks: 972 for test in benchmarks:
973 for (groupName, res) in test.bench(vm).items(): 973 for (groupName, res) in test.bench(vm).items():
974 group = results.setdefault(groupName, {}) 974 group = results.setdefault(groupName, {})