[pypy-svn] r68533 - pypy/trunk/pypy

arigo at codespeak.net arigo at codespeak.net
Fri Oct 16 14:10:08 CEST 2009


Author: arigo
Date: Fri Oct 16 14:10:07 2009
New Revision: 68533

Modified:
   pypy/trunk/pypy/testrunner_cfg.py
Log:
Add 'translator/jvm' to the list of test directories
that are better run one-file-at-a-time because it takes
too long.


Modified: pypy/trunk/pypy/testrunner_cfg.py
==============================================================================
--- pypy/trunk/pypy/testrunner_cfg.py	(original)
+++ pypy/trunk/pypy/testrunner_cfg.py	Fri Oct 16 14:10:07 2009
@@ -3,6 +3,7 @@
 
 def collect_one_testdir(testdirs, reldir, tests):
     if (reldir.startswith('translator/c/') or 
+        reldir.startswith('translator/jvm/') or
         reldir.startswith('rlib/test') or
         reldir.startswith('rpython/memory/') or
         reldir.startswith('jit/backend/x86/') or



More information about the Pypy-commit mailing list