Author: Antonio Cuni <[email protected]>
Branch:
Changeset: r137:9573b1c9a942
Date: 2011-07-26 10:19 +0200
http://bitbucket.org/pypy/benchmarks/changeset/9573b1c9a942/
Log: put the postfix on the host instead of the executable name; this
should put bench results in two separate environments on codespeed,
tannit and tannit-64
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" + postfix
+ name = "pypy-c"
else:
- name = "pypy-c-jit" + postfix
+ name = "pypy-c-jit"
if "psyco.sh" in pypy_c_path:
name = "cpython psyco-profile"
revision = 100
@@ -24,6 +24,7 @@
host = force_host
else:
host = socket.gethostname()
+ host += postfix
print save(project, revision, res, options, name, host, changed=changed)
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit