diff mx/sanitycheck.py @ 4230:b780ecb920c9

Add SPECjvm2008 to benchmarks, use dacapos defined in sanitycheck for the gate
author Gilles Duboscq <gilles.m.duboscq@gmail.com>
date Thu, 05 Jan 2012 20:15:45 +0100
parents e872562f95f8
children e0d09e05aa9b
line wrap: on
line diff
--- a/mx/sanitycheck.py	Thu Jan 05 17:25:28 2012 +0100
+++ b/mx/sanitycheck.py	Thu Jan 05 20:15:45 2012 +0100
@@ -64,9 +64,9 @@
     
     opts = []
     if warmupTime is not None:
-        opts +0 ['-wt', str(warmupTime)]
+        opts += ['-wt', str(warmupTime)]
     if iterationTime is not None:
-        opts +0 ['-it', str(iterationTime)]
+        opts += ['-it', str(iterationTime)]
     if skipKitValidation:
         opts += ['-ikv']
     
@@ -101,8 +101,8 @@
     time = re.compile(r"Bootstrapping Graal............... in (?P<time>[0-9]+) ms")
     scoreMatcher = Matcher(time, {'const:name' : 'const:BootstrapTime', 'const:score' : 'time'})
     tests = []
-    tests.append(Test("Bootstrap", "Bootstrap", ['-version'], succesREs=[time], scoreMatchers=[scoreMatcher]))
-    tests.append(Test("Bootstrap-bigHeap", "Bootstrap-bigHeap", ['-version'], succesREs=[time], scoreMatchers=[scoreMatcher], vmOpts=['-Xms2g']))
+    tests.append(Test("Bootstrap", "Bootstrap", ['-version'], successREs=[time], scoreMatchers=[scoreMatcher]))
+    tests.append(Test("Bootstrap-bigHeap", "Bootstrap-bigHeap", ['-version'], successREs=[time], scoreMatchers=[scoreMatcher], vmOpts=['-Xms2g']))
     return tests
 
 """