[pypy-commit] pypy arm-backend-2: Backed out changeset 2ad609c205d8

bivab noreply at buildbot.pypy.org
Sat Jul 7 09:50:13 CEST 2012


Author: David Schneider <david.schneider at picle.org>
Branch: arm-backend-2
Changeset: r55949:bd659482c19d
Date: 2012-07-05 16:03 +0200
http://bitbucket.org/pypy/pypy/changeset/bd659482c19d/

Log:	Backed out changeset 2ad609c205d8

diff --git a/testrunner/runner.py b/testrunner/runner.py
--- a/testrunner/runner.py
+++ b/testrunner/runner.py
@@ -302,11 +302,7 @@
 
     def is_test_py_file(self, p):
         name = p.basename
-        # XXX avoid picking up pypy/test_all.py as a test test_xxx.py file else
-        # the pypy directory is not traversed and picked up as one test
-        # directory
-        return (self.reltoroot(p) != 'pypy/test_all.py'
-                    and (name.startswith('test_') and name.endswith('.py')))
+        return name.startswith('test_') and name.endswith('.py')
 
     def reltoroot(self, p):
         rel = p.relto(self.root)


More information about the pypy-commit mailing list