[pypy-svn] r68313 - pypy/build/testrunner

arigo at codespeak.net arigo at codespeak.net
Sun Oct 11 15:37:48 CEST 2009


Author: arigo
Date: Sun Oct 11 15:37:48 2009
New Revision: 68313

Modified:
   pypy/build/testrunner/runner.py
Log:
Attempt to run directories in alphabetical order
in our nightly test runs.


Modified: pypy/build/testrunner/runner.py
==============================================================================
--- pypy/build/testrunner/runner.py	(original)
+++ pypy/build/testrunner/runner.py	Sun Oct 11 15:37:48 2009
@@ -264,6 +264,7 @@
             
         reldir = self.reltoroot(p)
         entries = [p1 for p1 in p.listdir() if p1.check(dotfile=0)]
+        entries.sort()
 
         if p != self.root:
             for p1 in entries:



More information about the Pypy-commit mailing list