Bug 1922312 - Adjust automation for macosx 14.40 to be for 14.70. r=aryx,necko-reviewers,taskgraph-reviewers,jesup,bhearsum

Differential Revision: https://phabricator.services.mozilla.com/D224342
This commit is contained in:
Joel Maher 2024-10-07 16:39:38 +00:00
parent c9e529ace1
commit 1aeb6b3be7
8 changed files with 12 additions and 10 deletions

View File

@ -26,7 +26,7 @@ tags = "bleedover"
["browser_glean_first_frame_loaded_time.js"]
tags = "os_integration"
skip-if = ["os == 'mac' && os_version == '14.40'"] # Bug 1909908
skip-if = ["os == 'mac' && os_version == '14.70' && processor == 'x86_64'"] # Bug 1909908
["browser_tab_visibility_and_play_time.js"]

View File

@ -764,7 +764,7 @@ tags = "cloneelementvisually"
["test_cloneElementVisually_resource_change.html"]
skip-if = [
"os == 'linux' && !(debug || asan || tsan)", # Bug 1559308 - lower frequency intermittent
"os == 'mac' && os_version == '14.40'", # Bug 1909908
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'", # Bug 1909908
]
tags = "cloneelementvisually os_integration"

View File

@ -729,7 +729,7 @@ skip-if = ["os == 'android'"] # android(bug 1232305)
skip-if = [
"os == 'win' && os_version == '10.2009'", # Bug 1453375
"os == 'android'", # Bug 1694645
"os == 'mac' && os_version == '14.40'", # Bug 1909908
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'", # Bug 1909908
]
["test_mediarecorder_record_4ch_audiocontext.html"]

View File

@ -983,17 +983,17 @@ skip-if = [
["test_proxy-slow-upload.js"]
["test_proxy_cancel.js"]
run-sequentially = "node server exceptions dont replay well"
["test_proxy_pac.js"]
["test_proxyDNS_leak.js"]
skip-if = [
"os == 'android'",
"socketprocess_networking",
]
["test_proxy_cancel.js"]
run-sequentially = "node server exceptions dont replay well"
["test_proxy_pac.js"]
["test_proxyconnect.js"]
skip-if = [
"tsan",

View File

@ -123,6 +123,7 @@ def guess_mozinfo_from_task(task, repo="", app_version="", test_tags=[]):
("macosx", "1015"): "10.15",
("macosx", "1100"): "11.20",
("macosx", "1400"): "14.40",
("macosx", "1470"): "14.70",
("windows", "10"): "10.2009",
("windows", "11"): "11.2009",
}

View File

@ -1782,7 +1782,7 @@ toolbar#nav-bar {
noDefaultFilters = True
# TODO: remove this when crashreporter is fixed on mac via bug 1910777
if info["os"] == "mac" and info["os_version"] == "14.40":
if info["os"] == "mac" and info["os_version"].split(".")[0] == "14":
info["crashreporter"] = False
tests = manifest.active_tests(

View File

@ -1587,7 +1587,7 @@ class XPCShellTests(object):
(release, versioninfo, machine) = platform.mac_ver()
versionNums = release.split(".")[:2]
os_version = "%s.%s" % (versionNums[0], versionNums[1].ljust(2, "0"))
if os_version == "14.40" and self.mozInfo["arch"] == "aarch64":
if os_version.split(".")[0] == "14":
self.mozInfo["crashreporter"] = False
# we default to false for e10s on xpcshell

View File

@ -112,6 +112,7 @@ reason = "Windows test specific to the x86-64 architecture"
skip-if = [
"os == 'android'",
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'",
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'",
"os == 'mac' && os_version == '11.20' && arch == 'aarch64'",
"os == 'linux' && os_version == '18.04' && bits == 32",
]