Skip to content

Instantly share code, notes, and snippets.

@bhearsum
Created January 11, 2013 15:26
Show Gist options
  • Save bhearsum/4511489 to your computer and use it in GitHub Desktop.
Save bhearsum/4511489 to your computer and use it in GitHub Desktop.
for branch in BRANCHES.keys():
if branch in ['mozilla-aurora', 'mozilla-beta', 'mozilla-release', 'mozilla-esr17', 'mozilla-esr10']:
continue # These branches are fine
if BRANCHES[branch]['platforms'].has_key("linux"):
if branch not in ['mozilla-b2g18']:
# We need to keep some linux32 testing on b2g18
del BRANCHES[branch]['platforms']['linux']
continue
# We want ipc tests for b2g18 though
BRANCHES[branch]['platforms']['linux']['fedora']['mobile_unittest_suites'] = []
suite_list = []
suite_list = addSuite('mochitest-other', 'mochitest-ipcplugins', suite_list)
BRANCHES[branch]['platforms']['linux']['fedora']['debug_unittest_suites'] = suite_list[:]
suite_list = addSuite('reftest-ipc', 'reftest-ipc', suite_list)
suite_list = addSuite('crashtest-ipc', 'crashtest-ipc', suite_list)
BRANCHES[branch]['platforms']['linux']['fedora']['opt_unittest_suites'] = suite_list[:]
# Because we keep linux on here, we need to force off linux/fedora TALOS
for suite in SUITES.keys():
plats = BRANCHES[branch][suite + '_tests'][-1][:]
if 'fedora' in plats:
plats.remove('fedora')
newTup = tuple(list(BRANCHES[branch][suite + '_tests'][:-1]) + [plats])
BRANCHES[branch][suite + '_tests'] = newTup
#-----------------------------------------------------------------------
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment