Skip to content

Instantly share code, notes, and snippets.

@rail
Created March 26, 2013 19:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rail/5248201 to your computer and use it in GitHub Desktop.
Save rail/5248201 to your computer and use it in GitHub Desktop.
diff --git a/mozilla-tests/tests_master.cfg b/mozilla-tests/tests_master.cfg
index e019514..da0f3bd 100644
--- a/mozilla-tests/tests_master.cfg
+++ b/mozilla-tests/tests_master.cfg
@@ -67,6 +67,8 @@ all_slave_platforms = []
for p in ACTIVE_PLATFORMS.keys():
ACTIVE_PLATFORMS[p] = deepcopy(PLATFORMS[p])
all_slave_platforms.extend(PLATFORMS[p]['slave_platforms'])
+ if 'talos_slave_platforms' in PLATFORMS[p]:
+ all_slave_platforms.extend(PLATFORMS[p]['talos_slave_platforms'])
# Handle active platforms - Thunderbird
tb_all_slave_platforms = []
diff --git a/mozilla-tests/universal_master_sqlite.cfg b/mozilla-tests/universal_master_sqlite.cfg
index f3322c7..8c701cf 100644
--- a/mozilla-tests/universal_master_sqlite.cfg
+++ b/mozilla-tests/universal_master_sqlite.cfg
@@ -67,6 +67,8 @@ all_slave_platforms = []
for p in ACTIVE_PLATFORMS.keys():
ACTIVE_PLATFORMS[p] = deepcopy(PLATFORMS[p])
all_slave_platforms.extend(PLATFORMS[p]['slave_platforms'])
+ if 'talos_slave_platforms' in PLATFORMS[p]:
+ all_slave_platforms.extend(PLATFORMS[p]['talos_slave_platforms'])
# Handle active platforms - Thunderbird
tb_all_slave_platforms = []
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment