Bug 1909908 - Skip tests on macosx 14.x which fail with media_decode_err. r=padenot

Differential Revision: https://phabricator.services.mozilla.com/D217869
This commit is contained in:
Joel Maher 2024-07-29 17:29:34 +00:00
parent 9eab3cf774
commit 6817215ef5
3 changed files with 8 additions and 1 deletions

View File

@ -25,6 +25,9 @@ skip-if = ["apple_silicon"] # Disabled due to bleedover with other tests when ru
["browser_glean_first_frame_loaded_time.js"]
tags = "os_integration"
skip-if = [
"os == 'mac' && os_version == '14.40'", # Bug 1909908
]
["browser_tab_visibility_and_play_time.js"]

View File

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

View File

@ -729,6 +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
]
["test_mediarecorder_record_4ch_audiocontext.html"]