Bug 1131269 - use SETA data to disable unneeded tests r=catlee
--- a/misc.py
+++ b/misc.py
@@ -2731,16 +2731,17 @@ def generateTalosBranchObjects(branch, b
for test in test_builders:
skipcount = 0
skiptimeout = 0
if branch_config['platforms'][platform][slave_platform].get('skipconfig'):
#extract last word in the test string as it should correspond to the name of the test
test_name = test.split()[-1]
if (test_type, test_name) in branch_config['platforms'][platform][slave_platform]['skipconfig']:
skipcount, skiptimeout = branch_config['platforms'][platform][slave_platform]['skipconfig'][test_type, test_name]
+ builderMergeLimits[test] = skipcount
suites_by_skipconfig[skipcount, skiptimeout].append(test)
# Create a new Scheduler for every skip config
for (skipcount, skiptimeout), test_builders in suites_by_skipconfig.items():
scheduler_class = Scheduler
s_name = scheduler_name
extra_args = {}