Author: David Schneider <[email protected]>
Branch: 
Changeset: r686:125f04258c3f
Date: 2012-09-07 13:44 +0200
http://bitbucket.org/pypy/buildbot/changeset/125f04258c3f/

Log:    Add a finer grained cherry picking for the ARM backend testing

diff --git a/bot2/pypybuildbot/master.py b/bot2/pypybuildbot/master.py
--- a/bot2/pypybuildbot/master.py
+++ b/bot2/pypybuildbot/master.py
@@ -166,9 +166,13 @@
 crosstranslationargs = ['--platform=arm', '--gcrootfinder=shadowstack']
 crosstranslationjitargs = ['--jit-backend=arm']
 # this one needs a larger timeout due to how it is run
-pypyJitBackendOnlyOwnTestFactoryARM = pypybuilds.Own(cherrypick="jit/backend/",
-                                                                timeout=6*3600)
-pypyJitOnlyOwnTestFactoryARM = pypybuilds.Own(cherrypick="jit", timeout=2*3600)
+pypyJitBackendOnlyOwnTestFactoryARM = pypybuilds.Own(
+        cherrypick=':'.join(["jit/backend/arm",
+                            "jit/backend/llsupport",
+                            "jit/backend/test",  # kill this one in case it is 
too slow
+                            ]),
+        timeout=6 * 3600)
+pypyJitOnlyOwnTestFactoryARM = pypybuilds.Own(cherrypick="jit", timeout=2 * 
3600)
 pypyOwnTestFactoryARM = pypybuilds.Own(timeout=2*3600)
 pypyCrossTranslatedAppLevelTestFactoryARM = pypybuilds.Translated(
     translationArgs=crosstranslationargs+['-O2'],
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to