[pypy-svn] r68499 - pypy/trunk/pypy

antocuni at codespeak.net antocuni at codespeak.net
Thu Oct 15 17:15:56 CEST 2009


Author: antocuni
Date: Thu Oct 15 17:15:55 2009
New Revision: 68499

Modified:
   pypy/trunk/pypy/testrunner_cfg.py
Log:
try to not timeout the cli jit tests


Modified: pypy/trunk/pypy/testrunner_cfg.py
==============================================================================
--- pypy/trunk/pypy/testrunner_cfg.py	(original)
+++ pypy/trunk/pypy/testrunner_cfg.py	Thu Oct 15 17:15:55 2009
@@ -6,7 +6,8 @@
         reldir.startswith('rlib/test') or
         reldir.startswith('rpython/memory/') or
         reldir.startswith('jit/backend/x86/') or
-        reldir.startswith('jit/backend/minimal/')):
+        reldir.startswith('jit/backend/minimal/') or
+        reldir.startswith('jit/backend/cli')):
         testdirs.extend(tests)
     else:
         testdirs.append(reldir)



More information about the Pypy-commit mailing list