[pypy-svn] r59625 - pypy/trunk/pypy

pedronis at codespeak.net pedronis at codespeak.net
Sat Nov 1 16:13:24 CET 2008


Author: pedronis
Date: Sat Nov  1 16:13:23 2008
New Revision: 59625

Modified:
   pypy/trunk/pypy/testrunner_cfg.py
Log:
explode the slow gc tests too



Modified: pypy/trunk/pypy/testrunner_cfg.py
==============================================================================
--- pypy/trunk/pypy/testrunner_cfg.py	(original)
+++ pypy/trunk/pypy/testrunner_cfg.py	Sat Nov  1 16:13:23 2008
@@ -3,7 +3,8 @@
 def collect_one_testdir(testdirs, reldir, tests):
     if (reldir.startswith('jit/codegen/i386/') or
         reldir.startswith('jit/timeshifter/') or
-        reldir.startswith('translator/c/')):
+        reldir.startswith('translator/c/') or 
+        reldir.startswith('/rpython/memory/'):
         testdirs.extend(tests)
     else:     
         testdirs.append(reldir)



More information about the Pypy-commit mailing list