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

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


Author: fijal
Date: Sat Nov  8 13:12:44 2008
New Revision: 59788

Modified:
   pypy/build/bot2/pypybuildbot/builds.py
Log:
Add lib-python tests and applevel tests


Modified: pypy/build/bot2/pypybuildbot/builds.py
==============================================================================
--- pypy/build/bot2/pypybuildbot/builds.py	(original)
+++ pypy/build/bot2/pypybuildbot/builds.py	Sat Nov  8 13:12:44 2008
@@ -154,3 +154,22 @@
 
         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(ShellCmd(
+            description="app-level (-A) test",
+            command=["python", "testrunner/runner.py",
+                     "--logfile=pytest-A.log",
+                     "--config=pypy/pytest-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