[pypy-svn] r62990 - pypy/trunk/pypy

fijal at codespeak.net fijal at codespeak.net
Tue Mar 17 11:06:03 CET 2009


Author: fijal
Date: Tue Mar 17 11:06:00 2009
New Revision: 62990

Modified:
   pypy/trunk/pypy/testrunner_cfg.py
Log:
Run x86 backend tests per-file


Modified: pypy/trunk/pypy/testrunner_cfg.py
==============================================================================
--- pypy/trunk/pypy/testrunner_cfg.py	(original)
+++ pypy/trunk/pypy/testrunner_cfg.py	Tue Mar 17 11:06:00 2009
@@ -3,9 +3,10 @@
 def collect_one_testdir(testdirs, reldir, tests):
     if (reldir.startswith('translator/c/') or 
         reldir.startswith('rlib/test') or
-        reldir.startswith('rpython/memory/')):
+        reldir.startswith('rpython/memory/') or
+        reldir.startswith('jit/backend/x86')):
         testdirs.extend(tests)
-    else:     
+    else:
         testdirs.append(reldir)
 
     



More information about the Pypy-commit mailing list