Author: David Schneider <[email protected]>
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)
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to