[pypy-commit] buildbot default: define an arm builder for jit-only own tests

bivab noreply at buildbot.pypy.org
Thu Jul 19 10:44:59 CEST 2012


Author: David Schneider <david.schneider at picle.org>
Branch: 
Changeset: r655:0f3346239aba
Date: 2012-07-19 10:44 +0200
http://bitbucket.org/pypy/buildbot/changeset/0f3346239aba/

Log:	define an arm builder for jit-only own tests

diff --git a/bot2/pypybuildbot/master.py b/bot2/pypybuildbot/master.py
--- a/bot2/pypybuildbot/master.py
+++ b/bot2/pypybuildbot/master.py
@@ -181,6 +181,7 @@
 JITFREEBSD64 = 'pypy-c-jit-freebsd-7-x86-64'
 
 JITONLYLINUX32 = "jitonly-own-linux-x86-32"
+JITONLYLINUXARM32 = "jitonly-own-linux-arm-32"
 JITONLYLINUXPPC64 = "jitonly-own-linux-ppc-64"
 JITBENCH = "jit-benchmark-linux-x86-32"
 JITBENCH64 = "jit-benchmark-linux-x86-64"
@@ -434,6 +435,13 @@
                    'factory': pypyJITTranslatedTestFactoryPPC64,
                    'category': 'linux-ppc64',
                   },
+                  # ARM
+                  {"name": JITONLYLINUXARM32,
+                   "slavenames": ['hhu-arm'],
+                   "builddir": JITONLYLINUXARM32,
+                   "factory": pypyJitOnlyOwnTestFactory,
+                   "category": 'linux-arm32',
+                  },
                 ],
 
     # http://readthedocs.org/docs/buildbot/en/latest/tour.html#debugging-with-manhole


More information about the pypy-commit mailing list