[pypy-svn] r50766 - pypy/build/buildbot

exarkun at codespeak.net exarkun at codespeak.net
Fri Jan 18 23:15:17 CET 2008


Author: exarkun
Date: Fri Jan 18 23:15:17 2008
New Revision: 50766

Modified:
   pypy/build/buildbot/pypybuilders.py
Log:
don't use --boxed with -A

Modified: pypy/build/buildbot/pypybuilders.py
==============================================================================
--- pypy/build/buildbot/pypybuilders.py	(original)
+++ pypy/build/buildbot/pypybuilders.py	Fri Jan 18 23:15:17 2008
@@ -129,7 +129,9 @@
                 PyTest,
                 python="pypy/translator/goal/pypy-c",
                 testPackage="pypy",
-                testArguments=["-A"] + pytestArguments,
+                # Exclude --boxed if it was specified, because -A shouldn't
+                # really use much memory.
+                testArguments=["-A"] + list(arg for arg in pytestArguments if arg != "--boxed"),
                 timeout=60 * 60)
 
         # self.addStep(FileUpload,



More information about the Pypy-commit mailing list