[pypy-commit] benchmarks default: backout revision 9573b1c9a942: we want to save the 64bit results as pypy-c-64 in the tannit environment, not as pypy-c in the tannit-64 env

antocuni noreply at buildbot.pypy.org
Tue Aug 9 13:43:26 CEST 2011


Author: Antonio Cuni <anto.cuni at gmail.com>
Branch: 
Changeset: r139:59e67784563e
Date: 2011-08-09 13:45 +0200
http://bitbucket.org/pypy/benchmarks/changeset/59e67784563e/

Log:	backout revision 9573b1c9a942: we want to save the 64bit results as
	pypy-c-64 in the tannit environment, not as pypy-c in the tannit-64
	env

diff --git a/runner.py b/runner.py
--- a/runner.py
+++ b/runner.py
@@ -13,9 +13,9 @@
     from saveresults import save
     project = 'PyPy'
     if "--jit" in args:
-        name = "pypy-c"
+        name = "pypy-c" + postfix
     else:
-        name = "pypy-c-jit"
+        name = "pypy-c-jit" + postfix
     if "psyco.sh" in pypy_c_path:
         name = "cpython psyco-profile"
         revision = 100
@@ -24,7 +24,6 @@
         host = force_host
     else:
         host = socket.gethostname()
-    host += postfix
     print save(project, revision, res, options, name, host, changed=changed)
 
         


More information about the pypy-commit mailing list