Backed out 2d6158d681e0 for suspicion of causing intermittent checkconfig
authorChris AtLee <catlee@mozilla.com>
Wed, 16 Mar 2016 13:10:06 -0400 (2016-03-16)
changeset 13993 7c463958098df5bc5d7a8cb3dfd7cdac11d6d82f
parent 13992 b5163b4a78145801dc5c4075ef6ff29cee1054c1
child 13994 4c7d613a4409be7e26ef684d751853ec0e7226ac
child 13997 27dc9dcb3532b6bf11e4e96211c503a6cca2a0a8
push id9831
push usercatlee@mozilla.com
push dateWed, 16 Mar 2016 17:10:36 +0000 (2016-03-16)
backs out2d6158d681e00713a91430dd8241101ba9699485
Backed out 2d6158d681e0 for suspicion of causing intermittent checkconfig failures
mozilla-tests/config.py
mozilla-tests/tests_master.cfg
mozilla-tests/universal_master_sqlite.cfg
--- a/mozilla-tests/config.py
+++ b/mozilla-tests/config.py
@@ -3274,28 +3274,16 @@ delete_slave_platform(BRANCHES, PLATFORM
 # Explicitly don't remove win7-ix from talos
 for branch in set(BRANCHES.keys()) - set(win7_vm_inactive_branches):
     for platform in ('win32', 'win64'):
         if platform not in BRANCHES[branch]['platforms']:
             continue
         if nested_haskey(BRANCHES[branch]['platforms'], platform, 'win7-ix'):
             del BRANCHES[branch]['platforms'][platform]['win7-ix']
 
-# Bug 1253341 - run talos jobs on AWS
-for branch in ('try',):
-    BRANCHES[branch]['platforms']['linux64']['talos_slave_platforms'] = ['ubuntu64_hw', 'ubuntu64_vm']
-    # Add ubuntu64_vm to the talos suites
-    for test, test_config in BRANCHES[branch].items():
-        if not test.endswith('_tests'):
-            continue
-        tests, merge, extra, platforms = test_config
-        if 'ubuntu64_hw' in platforms and 'ubuntu64_vm' not in platforms:
-            platforms = platforms + ['ubuntu64_vm']
-            BRANCHES[branch][test] = (tests, merge, extra, platforms)
-
 if __name__ == "__main__":
     import sys
     import pprint
 
     args = sys.argv[1:]
 
     if len(args) > 0:
         items = dict([(b, BRANCHES[b]) for b in args])
--- a/mozilla-tests/tests_master.cfg
+++ b/mozilla-tests/tests_master.cfg
@@ -68,24 +68,20 @@ from buildbot.buildslave import BuildSla
 all_slave_platforms = []
 for p in ACTIVE_PLATFORMS.keys():
     ACTIVE_PLATFORMS[p] = deepcopy(PLATFORMS[p])
     # Handle active slave platforms
     if p in ACTIVE_FX_SLAVE_PLATFORMS:
         for sp in ACTIVE_PLATFORMS[p]['slave_platforms'][:]:
             if sp not in ACTIVE_FX_SLAVE_PLATFORMS[p]:
                 ACTIVE_PLATFORMS[p]['slave_platforms'].remove(sp)
-                if sp in ACTIVE_PLATFORMS[p]:
-                    del ACTIVE_PLATFORMS[p][sp]
         if 'talos_slave_platforms' in ACTIVE_PLATFORMS[p]:
             for sp in ACTIVE_PLATFORMS[p]['talos_slave_platforms'][:]:
                 if sp not in ACTIVE_FX_SLAVE_PLATFORMS[p]:
                     ACTIVE_PLATFORMS[p]['talos_slave_platforms'].remove(sp)
-                    if sp in ACTIVE_PLATFORMS[p]:
-                        del ACTIVE_PLATFORMS[p][sp]
 
     all_slave_platforms.extend(ACTIVE_PLATFORMS[p]['slave_platforms'])
     if 'talos_slave_platforms' in ACTIVE_PLATFORMS[p]:
         all_slave_platforms.extend(ACTIVE_PLATFORMS[p]['talos_slave_platforms'])
 
 # Handle active platforms - Thunderbird
 tb_all_slave_platforms = []
 for p in ACTIVE_THUNDERBIRD_PLATFORMS.keys():
--- a/mozilla-tests/universal_master_sqlite.cfg
+++ b/mozilla-tests/universal_master_sqlite.cfg
@@ -68,25 +68,20 @@ from buildbot.buildslave import BuildSla
 all_slave_platforms = []
 for p in ACTIVE_PLATFORMS.keys():
     ACTIVE_PLATFORMS[p] = deepcopy(PLATFORMS[p])
     # Handle active slave platforms
     if p in ACTIVE_FX_SLAVE_PLATFORMS:
         for sp in ACTIVE_PLATFORMS[p]['slave_platforms'][:]:
             if sp not in ACTIVE_FX_SLAVE_PLATFORMS[p]:
                 ACTIVE_PLATFORMS[p]['slave_platforms'].remove(sp)
-                if sp in ACTIVE_PLATFORMS[p]:
-                    del ACTIVE_PLATFORMS[p][sp]
         if 'talos_slave_platforms' in ACTIVE_PLATFORMS[p]:
             for sp in ACTIVE_PLATFORMS[p]['talos_slave_platforms'][:]:
                 if sp not in ACTIVE_FX_SLAVE_PLATFORMS[p]:
                     ACTIVE_PLATFORMS[p]['talos_slave_platforms'].remove(sp)
-                    if sp in ACTIVE_PLATFORMS[p]:
-                        del ACTIVE_PLATFORMS[p][sp]
-
     all_slave_platforms.extend(ACTIVE_PLATFORMS[p]['slave_platforms'])
     if 'talos_slave_platforms' in ACTIVE_PLATFORMS[p]:
         all_slave_platforms.extend(ACTIVE_PLATFORMS[p]['talos_slave_platforms'])
 
 # Handle active platforms - Thunderbird
 tb_all_slave_platforms = []
 for p in ACTIVE_THUNDERBIRD_PLATFORMS.keys():
     #XXX we shouldn't have to filter these platforms