[pypy-svn] r58368 - pypy/branch/pypy-pytrunk/pypy

pedronis at codespeak.net pedronis at codespeak.net
Tue Sep 23 11:46:59 CEST 2008


Author: pedronis
Date: Tue Sep 23 11:46:58 2008
New Revision: 58368

Added:
   pypy/branch/pypy-pytrunk/pypy/testrunner_cfg.py   (contents, props changed)
Log:
a configuration for the testrunner to explode translator/c into tests run one by one



Added: pypy/branch/pypy-pytrunk/pypy/testrunner_cfg.py
==============================================================================
--- (empty file)
+++ pypy/branch/pypy-pytrunk/pypy/testrunner_cfg.py	Tue Sep 23 11:46:58 2008
@@ -0,0 +1,11 @@
+# nightly test configuration for the paraller runner
+
+def collect_one_testdir(testdirs, reldir, tests):
+    if (reldir.startswith('jit/codegen/i386/') or
+        reldir.startswith('jit/timeshifter/') or
+        reldir.startswith('translator/c/')):
+        testdirs.extend(tests)
+    else:     
+        testdirs.append(reldir)
+
+    



More information about the Pypy-commit mailing list