[pypy-svn] r72851 - pypy/benchmarks

fijal at codespeak.net fijal at codespeak.net
Thu Mar 25 22:11:22 CET 2010


Author: fijal
Date: Thu Mar 25 22:11:20 2010
New Revision: 72851

Modified:
   pypy/benchmarks/runner.py
Log:
Use different way of telling "we're on psyco"


Modified: pypy/benchmarks/runner.py
==============================================================================
--- pypy/benchmarks/runner.py	(original)
+++ pypy/benchmarks/runner.py	Thu Mar 25 22:11:20 2010
@@ -40,8 +40,9 @@
             name = "pypy-c-jit"
         optionsname = "gc=hybrid"
         if "psyco.sh" in pypy_c_path:
-            name = "python-psyco-profile"
-            optionsname = "default"
+            name = "cpython"
+            optionsname = "psyco-profile"
+            revision = 262
         if force_host is not None:
             host = force_host
         else:



More information about the Pypy-commit mailing list