[pypy-svn] r70677 - pypy/build/bot2/pypybuildbot

fijal at codespeak.net fijal at codespeak.net
Mon Jan 18 13:39:42 CET 2010


Author: fijal
Date: Mon Jan 18 13:39:42 2010
New Revision: 70677

Modified:
   pypy/build/bot2/pypybuildbot/builds.py
Log:
adapt to changes in runner


Modified: pypy/build/bot2/pypybuildbot/builds.py
==============================================================================
--- pypy/build/bot2/pypybuildbot/builds.py	(original)
+++ pypy/build/bot2/pypybuildbot/builds.py	Mon Jan 18 13:39:42 2010
@@ -167,9 +167,9 @@
         self.addStep(Translate(['-Ojit'], []))
         self.addStep(ShellCmd(
             description="run more benchmarks",
-            command=["python", "runner.py", 'result.json',
-                    '../build/pypy/translator/goal/pypy-c',
-                     WithProperties('%(got_revision)s')],
+            command=["python", "runner.py", '--output-filename', 'result.json',
+                    '--pypy-c', '../build/pypy/translator/goal/pypy-c',
+                     '--revision', WithProperties('%(got_revision)s')],
             workdir='./benchmarks',
             haltOnFailure=True))
         # a bit obscure hack to get both os.path.expand and a property



More information about the Pypy-commit mailing list