[pypy-commit] lang-smalltalk default: fix benchmark script

timfel noreply at buildbot.pypy.org
Tue Apr 30 16:08:59 CEST 2013


Author: Tim Felgentreff <timfelgentreff at gmail.com>
Branch: 
Changeset: r357:c9d95a10ca3c
Date: 2013-04-30 16:08 +0200
http://bitbucket.org/pypy/lang-smalltalk/changeset/c9d95a10ca3c/

Log:	fix benchmark script

diff --git a/benchmarks.py b/benchmarks.py
--- a/benchmarks.py
+++ b/benchmarks.py
@@ -154,9 +154,9 @@
             callback(self)
 
     def run(self, args):
-        print 'Calling %s ...' % executable
+        print 'Calling %s ...' % self.name
         pipe = subprocess.Popen(
-            ["%s" % executable.path] + args,
+            ["%s" % self.path] + args,
             stdout=subprocess.PIPE
         )
         out, err = pipe.communicate()


More information about the pypy-commit mailing list