[pypy-svn] r72901 - pypy/benchmarks

fijal at codespeak.net fijal at codespeak.net
Fri Mar 26 15:54:00 CET 2010


Author: fijal
Date: Fri Mar 26 15:53:58 2010
New Revision: 72901

Modified:
   pypy/benchmarks/runner.py
Log:
Update as per miquel's request


Modified: pypy/benchmarks/runner.py
==============================================================================
--- pypy/benchmarks/runner.py	(original)
+++ pypy/benchmarks/runner.py	Fri Mar 26 15:53:58 2010
@@ -34,6 +34,7 @@
     f.close()
     if upload:
         from saveresults import save
+        project = 'pypy'
         if "--jit threshold" in args:
             name = "pypy-c"
         else:
@@ -43,11 +44,12 @@
             name = "cpython"
             optionsname = "psyco-profile"
             revision = 262
+            project = 'cpython'
         if force_host is not None:
             host = force_host
         else:
             host = socket.gethostname()
-        save('pypy', revision, res, options, branch, name, optionsname, host)
+        save(project, revision, res, options, branch, name, optionsname, host)
 
 BENCHMARK_SET = ['richards', 'slowspitfire', 'django', 'spambayes',
                  'rietveld', 'html5lib', 'ai']



More information about the Pypy-commit mailing list