[pypy-svn] buildbot default: make sure to run test_pypy_c_new in the nightly builds

antocuni commits-noreply at bitbucket.org
Wed Mar 9 16:39:24 CET 2011


Author: Antonio Cuni <anto.cuni at gmail.com>
Branch: 
Changeset: r447:341e3beaa587
Date: 2011-03-09 16:39 +0100
http://bitbucket.org/pypy/buildbot/changeset/341e3beaa587/

Log:	make sure to run test_pypy_c_new in the nightly builds

diff --git a/bot2/pypybuildbot/builds.py b/bot2/pypybuildbot/builds.py
--- a/bot2/pypybuildbot/builds.py
+++ b/bot2/pypybuildbot/builds.py
@@ -202,7 +202,9 @@
                 logfiles={'pytestLog': 'cpython.log'}))
 
         if pypyjit:
-            # upload nightly build, if we're running jit tests
+            # kill this step when the transition to test_pypy_c_new has been
+            # completed
+            # "old" test_pypy_c
             self.addStep(PytestCmd(
                 description="pypyjit tests",
                 command=["python", "pypy/test_all.py",
@@ -210,6 +212,15 @@
                          "--resultlog=pypyjit.log",
                          "pypy/module/pypyjit/test"],
                 logfiles={'pytestLog': 'pypyjit.log'}))
+            #
+            # "new" test_pypy_c
+            self.addStep(PytestCmd(
+                description="pypyjit tests",
+                command=["pypy/translator/goal/pypy-c", "pypy/test_all.py",
+                         "--resultlog=pypyjit_new.log",
+                         "pypy/module/pypyjit/test_pypy_c"],
+                logfiles={'pytestLog': 'pypyjit_new.log'}))
+
         if pypyjit:
             kind = 'jit'
         else:


More information about the Pypy-commit mailing list