comparison mx/commands.py @ 5877:0e54d9bb922d

Add SPECjbb2005 to the benchmarks
author Gilles Duboscq <duboscq@ssw.jku.at>
date Thu, 26 Jul 2012 17:08:54 +0200
parents 000fb0550afe
children 191e08da4de4
comparison
equal deleted inserted replaced
5876:c21886d4e125 5877:0e54d9bb922d
876 benchmarks += [sanitycheck.getSPECjvm2008([], True, 120, 120)] 876 benchmarks += [sanitycheck.getSPECjvm2008([], True, 120, 120)]
877 else: 877 else:
878 specjvms = [a[12:] for a in args if a.startswith('specjvm2008:')] 878 specjvms = [a[12:] for a in args if a.startswith('specjvm2008:')]
879 for specjvm in specjvms: 879 for specjvm in specjvms:
880 benchmarks += [sanitycheck.getSPECjvm2008([specjvm], True, 120, 120)] 880 benchmarks += [sanitycheck.getSPECjvm2008([specjvm], True, 120, 120)]
881
882 if ('specjbb2005' in args or 'all' in args):
883 benchmarks += [sanitycheck.getSPECjbb2005()]
881 884
882 for test in benchmarks: 885 for test in benchmarks:
883 for (group, res) in test.bench(vm).items(): 886 for (group, res) in test.bench(vm).items():
884 if not results.has_key(group): 887 if not results.has_key(group):
885 results[group] = {}; 888 results[group] = {};