[pypy-svn] r50501 - pypy/branch/astcompilertests/pypy/interpreter/astcompiler/test

arigo at codespeak.net arigo at codespeak.net
Thu Jan 10 22:43:27 CET 2008


Author: arigo
Date: Thu Jan 10 22:43:27 2008
New Revision: 50501

Modified:
   pypy/branch/astcompilertests/pypy/interpreter/astcompiler/test/stdlib_testall.py
Log:
Run in a predictible (alphabetical) order.


Modified: pypy/branch/astcompilertests/pypy/interpreter/astcompiler/test/stdlib_testall.py
==============================================================================
--- pypy/branch/astcompilertests/pypy/interpreter/astcompiler/test/stdlib_testall.py	(original)
+++ pypy/branch/astcompilertests/pypy/interpreter/astcompiler/test/stdlib_testall.py	Thu Jan 10 22:43:27 2008
@@ -14,5 +14,7 @@
     def test_all(self):
         p = py.path.local(pypy.__file__).dirpath().dirpath('lib-python',
                                                            '2.4.1')
-        for s in p.listdir("*.py"):
+        files = p.listdir("*.py")
+        files.sort()
+        for s in files:
             yield self.check_file_compile, s



More information about the Pypy-commit mailing list