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

fijal at codespeak.net fijal at codespeak.net
Sat Nov 8 13:28:28 CET 2008


Author: fijal
Date: Sat Nov  8 13:28:28 2008
New Revision: 59790

Modified:
   pypy/build/bot2/pypybuildbot/builds.py
Log:
remove translate and add dry-run for -A


Modified: pypy/build/bot2/pypybuildbot/builds.py
==============================================================================
--- pypy/build/bot2/pypybuildbot/builds.py	(original)
+++ pypy/build/bot2/pypybuildbot/builds.py	Sat Nov  8 13:28:28 2008
@@ -152,24 +152,16 @@
         setup_steps(platform, self, WORKDIR)
         workdir = os.path.join(WORKDIR, 'pypy', 'translator', 'goal')
 
-        self.addStep(Translate(["--platform", "maemo", "-Omem"], [],
-                               workdir=workdir))
-
-        self.addStep(ShellCmd(
-            description="lib-python test",
-            command=["python", "pypy/test_all.py",
-                     "--pypy=pypy/translator/goal/pypy-c",
-                     "--resultlog=cpython.log", "lib-python"],           
-            logfiles={'pytestLog': 'cpython.log'}),
-            workdir=WORKDIR)
+        #self.addStep(Translate(["--platform", "maemo", "-Omem"], [],
+        #                       workdir=workdir))
         
         self.addStep(ShellCmd(
             description="app-level (-A) test",
             command=["python", "testrunner/runner.py",
+                     "--dry-run",
                      "--logfile=pytest-A.log",
-                     "--config=pypy/pytest-A.cfg",
+                     "--config=pypy/pytest-scratchbox-A.cfg",
                      "--root=pypy", "--timeout=1800"],
             logfiles={'pytestLog': 'pytest-A.log'},
             timeout = 4000,
-            workdir = WORKDIR,
             env={"PYTHONPATH": ['.']}))



More information about the Pypy-commit mailing list