Author: David Schneider <[email protected]>
Branch: 
Changeset: r776:f0a28727a5c2
Date: 2013-04-10 10:14 +0200
http://bitbucket.org/pypy/buildbot/changeset/f0a28727a5c2/

Log:    fix missing rename of test factory

diff --git a/bot2/pypybuildbot/arm_master.py b/bot2/pypybuildbot/arm_master.py
--- a/bot2/pypybuildbot/arm_master.py
+++ b/bot2/pypybuildbot/arm_master.py
@@ -69,7 +69,7 @@
     platform='linux-armel',
 )
 
-pypyARMJITTranslatedTestFactory = pypybuilds.TranslatedTests(
+pypyARMHF_RASPBIAN_JITTranslatedTestFactory = pypybuilds.TranslatedTests(
     translationArgs=(crosstranslationargs
                         + jit_translation_args
                         + crosstranslationjitargs),
@@ -78,7 +78,7 @@
     app_tests=True,
     platform='linux-armhf-raspbian',
     )
-pypyARMTranslatedAppLevelTestFactory = pypybuilds.TranslatedTests(
+pypyARMHF_RASPBIAN_TranslatedAppLevelTestFactory = pypybuilds.TranslatedTests(
     translationArgs=crosstranslationargs + ['-O2'],
     lib_python=True,
     app_tests=True,
@@ -163,14 +163,14 @@
   {"name": APPLVLLINUXARMHF_RASPBIAN,
    "slavenames": ["hhu-raspberry-pi"],
    "builddir": APPLVLLINUXARMHF_RASPBIAN,
-   "factory": pypyARMTranslatedAppLevelTestFactory,
+   "factory": pypyARMHF_RASPBIAN_TranslatedAppLevelTestFactory,
    "category": "linux-armhf",
    "locks": [ARMBoardLock.access('counting')],
    },
   {"name": JITLINUXARMHF_RASPBIAN,
    "slavenames": ["hhu-raspberry-pi"],
    'builddir': JITLINUXARMHF_RASPBIAN,
-   'factory': pypyARMJITTranslatedTestFactory,
+   'factory': pypyARMHF_RASPBIAN_JITTranslatedTestFactory,
    'category': 'linux-armhf',
    "locks": [ARMBoardLock.access('counting')],
    },
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to