[pypy-commit] benchmarks default: run the full pypy target instead of targetnop

antocuni noreply at buildbot.pypy.org
Mon Jul 25 15:44:18 CEST 2011


Author: Antonio Cuni <anto.cuni at gmail.com>
Branch: 
Changeset: r134:1658f38e0e7f
Date: 2011-07-25 15:44 +0200
http://bitbucket.org/pypy/benchmarks/changeset/1658f38e0e7f/

Log:	run the full pypy target instead of targetnop

diff --git a/benchmarks.py b/benchmarks.py
--- a/benchmarks.py
+++ b/benchmarks.py
@@ -116,11 +116,8 @@
     import subprocess
 
     translate_py = relative('lib/pypy/pypy/translator/goal/translate.py')
-    targetnop = relative('lib/pypy/pypy/translator/goal/targetnopstandalone.py')
-    args = base_python + [translate_py,
-            '--source', '--dont-write-c-files',
-            targetnop,
-            ]
+    #targetnop = relative('lib/pypy/pypy/translator/goal/targetnopstandalone.py')
+    args = base_python + [translate_py, '--source', '--dont-write-c-files']
     try:
         output = subprocess.check_output(args, stderr=subprocess.STDOUT)
     except subprocess.CalledProcessError, e:


More information about the pypy-commit mailing list