[pypy-svn] r71825 - pypy/build/bot2/pypybuildbot

arigo at codespeak.net arigo at codespeak.net
Fri Mar 5 19:33:27 CET 2010


Author: arigo
Date: Fri Mar  5 19:33:26 2010
New Revision: 71825

Modified:
   pypy/build/bot2/pypybuildbot/master.py
Log:
Update.


Modified: pypy/build/bot2/pypybuildbot/master.py
==============================================================================
--- pypy/build/bot2/pypybuildbot/master.py	(original)
+++ pypy/build/bot2/pypybuildbot/master.py	Fri Mar  5 19:33:26 2010
@@ -67,11 +67,22 @@
     lib_python=True,
     app_tests=True)
 
+jit_translation_args = ['-Ojit', '--gc=hybrid',
+                        '--gcrootfinder=asmgcc',
+                        '--jit-debug=steps']
+
 pypyJITTranslatedTestFactory = pypybuilds.Translated(
-    translationArgs=['-Ojit', '--gc=hybrid',
-                     '--gcrootfinder=asmgcc',
-                     '--jit-debug=steps'],
-    targetArgs = [], #'--withoutmod-thread'],
+    translationArgs=jit_translation_args,
+    targetArgs=[],
+    lib_python=True,
+    pypyjit=True,
+    app_tests=True,
+    )
+
+pypyJITTranslatedTestFactoryWin = pypybuilds.Translated(
+    platform="win32",
+    translationArgs=jit_translation_args,
+    targetArgs=[],
     lib_python=True,
     pypyjit=True,
     app_tests=True,
@@ -191,7 +202,7 @@
                   {"name" : JITWIN32,
                    "slavenames": ["bigboard"],
                    'builddir' : JITWIN32,
-                   'factory' : pypyJITTranslatedTestFactory,
+                   'factory' : pypyJITTranslatedTestFactoryWin,
                    'category' : 'jit',
                    },
                   {"name": JITONLYLINUX32,



More information about the Pypy-commit mailing list