[pypy-svn] r68185 - pypy/trunk/pypy/jit/backend/test

arigo at codespeak.net arigo at codespeak.net
Mon Oct 5 18:14:41 CEST 2009


Author: arigo
Date: Mon Oct  5 18:14:41 2009
New Revision: 68185

Modified:
   pypy/trunk/pypy/jit/backend/test/runner_test.py
Log:
Only run up to 50 tests at once,
to avoid hitting the x86's limit
of the number of inputargs for now.


Modified: pypy/trunk/pypy/jit/backend/test/runner_test.py
==============================================================================
--- pypy/trunk/pypy/jit/backend/test/runner_test.py	(original)
+++ pypy/trunk/pypy/jit/backend/test/runner_test.py	Mon Oct  5 18:14:41 2009
@@ -834,6 +834,9 @@
         self._test_unused_result(float_tests)
 
     def _test_unused_result(self, tests):
+        while len(tests) > 50:     # only up to 50 tests at once
+            self._test_unused_result(tests[:50])
+            tests = tests[50:]
         inputargs = []
         operations = []
         for opnum, boxargs, rettype, retvalue in tests:



More information about the Pypy-commit mailing list