[pypy-svn] r17676 - pypy/dist/pypy/translator/goal

ericvrp at codespeak.net ericvrp at codespeak.net
Tue Sep 20 08:55:27 CEST 2005


Author: ericvrp
Date: Tue Sep 20 08:55:26 2005
New Revision: 17676

Modified:
   pypy/dist/pypy/translator/goal/bench-unix.py
Log:
Search for pypy-* (pypy with any backend) instead pypy-c* 


Modified: pypy/dist/pypy/translator/goal/bench-unix.py
==============================================================================
--- pypy/dist/pypy/translator/goal/bench-unix.py	(original)
+++ pypy/dist/pypy/translator/goal/bench-unix.py	Tue Sep 20 08:55:26 2005
@@ -1,6 +1,6 @@
 # benchmarks on a unix machine.
 # to be executed in the goal folder,
-# where a couple of pypy-c* files is expected.
+# where a couple of pyp-c* files is expected.
 
 import os, sys
 
@@ -39,7 +39,7 @@
     return res
 
 def get_executables():
-    exes = [os.path.join('.', name) for name in os.listdir('.') if name.startswith('pypy-c')]
+    exes = [os.path.join('.', name) for name in os.listdir('.') if name.startswith('pypy-')]
     exes.sort()
     return exes
 



More information about the Pypy-commit mailing list