[
Bug 1174746] Android 4.3 opt doesn't appear to be adhering to SETA rules r=jmaher
--- a/mozilla-tests/config_seta.py
+++ b/mozilla-tests/config_seta.py
@@ -24,20 +24,22 @@ seta_platforms = {"Rev4 MacOSX Snow Leop
"android-2-3-armv7-api9": ("android-api-9", ["ubuntu64_vm_mobile", "ubuntu64_vm_large"]),
"android-4-3-armv7-api11": ("android-api-11", ["ubuntu64_vm_armv7_mobile", "ubuntu64_vm_armv7_large"])
}
#define seta branches and default values for skipcount and skiptimeout
skipconfig_defaults_platform = {}
for sp in seta_platforms:
for slave_sp in seta_platforms[sp][1]:
- if slave_sp not in ["xp-ix"]:
+ if slave_sp in ["xp-ix"]:
+ skipconfig_defaults_platform[slave_sp] = (14, 7200)
+ elif slave_sp in ["ubuntu64_vm_armv7_mobile", "ubuntu64_vm_armv7_large"]:
+ skipconfig_defaults_platform[slave_sp] = (7, 7200)
+ else:
skipconfig_defaults_platform[slave_sp] = (7, 3600)
- else:
- skipconfig_defaults_platform[slave_sp] = (14, 7200)
def get_seta_platforms(branch, platform_filter):
url = "http://alertmanager.allizom.org/data/setadetails/?date=" + today + "&buildbot=1&branch=" + branch + "&inactive=1"
try:
response = urllib2.urlopen(url)
except urllib2.HTTPError, e:
print('HTTPError = ' + str(e.code))