Bug 1940980 - Green up win11-64 opt/debug/asan/ccov. r=aryx,media-playback-reviewers,pip-reviewers,credential-management-reviewers,devtools-reviewers,tabbrowser-reviewers,urlbar-reviewers,aosmond,mconley,ochameau,dimi,jteow,mtigley

Differential Revision: https://phabricator.services.mozilla.com/D233862
This commit is contained in:
Joel Maher
2025-01-16 23:02:48 +00:00
parent afe3db6bb2
commit bcc50efbeb
28 changed files with 75 additions and 13 deletions

View File

@@ -73,7 +73,10 @@ support-files = [
]
["browser_aboutNetError_trr.js"]
skip-if = ["socketprocess_networking"]
skip-if = [
"socketprocess_networking",
"os == 'win' && os_version == '11.26100' && bits == 64 && asan", # Bug 1831977
]
["browser_aboutNetError_xfo_iframe.js"]
https_first_disabled = true

View File

@@ -66,7 +66,10 @@ run-if = [
skip-if = ["os == 'linux' && os_version == '18.04' && processor == 'x86_64'"] # Bug 1581889
["browser_osAuthDialog.js"]
skip-if = ["os == 'linux' && os_version == '18.04' && processor == 'x86_64'"] # bug 1527745
skip-if = [
"os == 'linux' && os_version == '18.04' && processor == 'x86_64'", # bug 1527745
"os == 'win' && os_version == '11.26100' && bits == 64 && asan", # Bug 1836545
]
["browser_primaryPassword.js"]
skip-if = ["os == 'linux' && os_version == '18.04' && processor == 'x86_64'"] # bug 1569789

View File

@@ -32,6 +32,7 @@ skip-if = [
"os == 'win' && os_version == '11.2009' && processor == 'x86_64' && asan", # Bug 1775779
"os == 'win' && os_version == '11.2009' && processor == 'x86_64' && ccov", # Bug 1775779
"os == 'win' && os_version == '11.2009' && processor == 'x86_64' && debug && socketprocess_networking", # Bug 1775779
"os == 'win' && os_version == '11.26100' && processor == 'x86_64' && asan", # Bug 1775779
]
support-files = ["test_spammy_page.html"]

View File

@@ -73,7 +73,10 @@ skip-if = ["verify && debug && os == 'win'"]
["browser_broadcastChannel.js"]
["browser_cache.js"]
skip-if = ["verify"]
skip-if = [
"verify",
"os == 'win' && os_version == '11.26100' && processor == 'x86_64' && ccov",
]
["browser_cacheAPI.js"]

View File

@@ -83,6 +83,7 @@ run-if = ["crashreporter"]
skip-if = [
"os == 'win' && os_version == '11.2009' && bits == 64", # Bug 1894797
"os == 'win' && os_version == '11.26100' && bits == 64 && ccov", # Bug 1894797
"os == 'win' && os_version == '11.26100' && bits == 64 && debug", # Bug 1894797
]
["browser_test_prevent_events.js"]

View File

@@ -64,12 +64,14 @@ skip-if = [
"os == 'linux' && os_version == '18.04' && processor == 'x86_64' && opt", # Bug 1787024
"os == 'linux' && os_version == '18.04' && processor == 'x86_64' && asan", # Bug 1787024
"win11_2009", # Bug 1787024
"os == 'win' && os_version == '11.26100' && bits == 64 && asan", # Bug 1787024
]
["browser_async_window_flushing.js"]
https_first_disabled = true
skip-if = [
"os == 'win' && os_version == '11.26100' && bits == 64 && opt", # Bug 1775616
"os == 'win' && os_version == '11.26100' && bits == 64 && asan", # Bug 1775616
]
["browser_attributes.js"]

View File

@@ -97,6 +97,9 @@ tags = "vertical-tabs"
["browser_file_to_http_script_closable.js"]
support-files = ["tab_that_closes.html"]
skip-if = [
"os == 'win' && os_version == '11.26100' && processor == 'x86_64' && debug && msix", # Bug 1775640
]
["browser_hiddentab_contextmenu.js"]
tags = "vertical-tabs"
@@ -413,6 +416,9 @@ run-if = ["crashreporter"] # test requires crashreporter due to 1536221
tags = "vertical-tabs"
["browser_scroll_size_determination.js"]
skip-if = [
"os == 'win' && os_version == '11.26100' && bits == 64 && debug", # Bug 1932653
]
["browser_selectTabAtIndex.js"]
tags = "vertical-tabs"

View File

@@ -485,6 +485,12 @@ support-files = ["dummy_page.html"]
["browser_searchMode_engineRemoval.js"]
["browser_searchMode_excludeResults.js"]
skip-if = [
"os == 'mac' && os_version == '11.20' && arch == 'aarch64' && opt", # Bug 1938142
"os == 'mac' && os_version == '10.15' && processor == 'x86_64' && opt", # Bug 1938142
"win11_2009 && opt", # Bug 1938142
"os == 'win' && os_version == '11.26100' && processor == 'x86_64' && opt", # Bug 1938142
]
["browser_searchMode_heuristic.js"]
https_first_disabled = true
@@ -554,6 +560,9 @@ support-files = [
["browser_search_continuation.js"]
support-files = ["../../../search/test/browser/trendingSuggestionEngine.sjs"]
skip-if = [
"os == 'win' && os_version == '11.26100' && processor == 'x86_64' && opt", # Bug 1883249
]
["browser_search_history_from_history_panel.js"]

View File

@@ -27,6 +27,7 @@ skip-if = [
"os == 'mac' && os_version == '10.15' && processor == 'x86_64' && debug", # Bug 1890182
"os == 'win' && os_version == '11.2009' && processor == 'x86_64' && opt", # Bug 1890182
"os == 'win' && os_version == '11.2009' && processor == 'x86_64' && asan", # Bug 1890182
"os == 'win' && os_version == '11.26100' && processor == 'x86_64' && asan", # Bug 1890182
]
["browser_address_doorhanger_display.js"]

View File

@@ -14,8 +14,6 @@ support-files = [
["browser_autocomplete_footer.js"]
skip-if = ["verify"]
["browser_autocomplete_region.js"]
["browser_autocomplete_marked_back_forward.js"]
["browser_autocomplete_marked_detached_tab.js"]
@@ -24,6 +22,8 @@ skip-if = [
"os == 'mac'",
]
["browser_autocomplete_region.js"]
["browser_autofill_address_housenumber.js"]
["browser_autofill_address_select.js"]
@@ -36,7 +36,7 @@ skip-if = [
["browser_autofill_duplicate_fields.js"]
skip-if = [
"os == 'win' && os_version == '11.26100' && processor == 'x86_64' && debug && socketprocess_networking", # frequent failure; Bug 1917060
"os == 'win' && os_version == '11.26100' && processor == 'x86_64' && debug", # Bug 1917060
]
["browser_autofill_invisible_fields.js"]

View File

@@ -154,6 +154,8 @@ skip-if = [
"os == 'linux' && os_version == '18.04' && debug'", # Bug 1831904
"os == 'linux' && os_version == '18.04' && tsan'", # Bug 1831904
"win11_2009 && debug", # Bug 1831904
"os == 'win' && os_version == '11.26100' && processor == 'x86_64' && debug", # Bug 1831904
"os == 'win' && os_version == '11.26100' && processor == 'x86_64' && ccov", # Bug 1831904
]
["browser_dbg-debug-line.js"]

View File

@@ -97,8 +97,7 @@ skip-if = ["os == 'mac' && os_version == '14.70' && processor == 'x86_64' && deb
skip-if = [
"os == 'linux' && os_version == '18.04' && processor == 'x86_64'", # Bug 1744565
"win11_2009", # Bug 1767772
"os == 'win' && os_version == '11.26100' && processor == 'x86_64' && debug", # Bug 1767772
"os == 'win' && os_version == '11.26100' && processor == 'x86_64' && ccov", # Bug 1767772
"os == 'win' && os_version == '11.26100' && processor == 'x86_64'", # Bug 1767772
"os == 'mac' && os_version == '10.15' && processor == 'x86_64'", # Bug 1767772
"os == 'mac' && os_version == '14.70' && processor == 'x86_64'", # Bug 1932913 (secondary)
]

View File

@@ -90,14 +90,14 @@ skip-if = ["os == 'linux' && bits == 64 && !debug"] # Bug 1607713
["browser_badCertDomainFixup.js"]
["browser_bfcache_after_auxiliary.js"]
["browser_bfcache_copycommand.js"]
skip-if = [
"os == 'linux' && os_version == '18.04' && processor == 'x86_64'", # Bug 1730593
"win11_2009", # Bug 1775931
]
["browser_bfcache_after_auxiliary.js"]
["browser_browsingContext-01.js"]
https_first_disabled = true
@@ -160,6 +160,7 @@ skip-if = [
"os == 'linux' && os_version == '18.04' && processor == 'x86_64' && tsan", # Bug 1933429
"os == 'linux' && os_version == '18.04' && processor == 'x86_64' && debug", # Bug 1933429
"os == 'win' && os_version == '11.2009' && processor == 'x86_64' && asan", # Bug 1933429
"os == 'win' && os_version == '11.26100' && processor == 'x86_64' && asan", # Bug 1933429
]
["browser_bug441169.js"]

View File

@@ -3,3 +3,6 @@
["test_cacheapi_encryption_PBM.py"]
["test_caches_delete_cleanup_after_shutdown.py"]
skip-if = [
"os == 'win' && os_version == '11.26100' && processor == 'x86_64' && ccov", # Bug 1937657
]

View File

@@ -15,6 +15,8 @@ support-files = [
skip-if = [
"win11_2009 && asan", # Bug 1904224
"win11_2009 && ccov", # Bug 1904224
"os == 'win' && os_version == '11.26100' && processor == 'x86_64' && asan", # Bug 1904224
"os == 'win' && os_version == '11.26100' && processor == 'x86_64' && ccov", # Bug 1904224
]
["browser_ManifestIcons_browserFetchIcon.js"]

View File

@@ -287,6 +287,9 @@ skip-if = ["!mda_gpu"]
["test_OnEvents.html"]
["test_PlayEventsAutoPlaying.html"]
skip-if = [
"os == 'win' && os_version == '11.26100' && processor == 'x86_64' && ccov",
]
["test_PlayEventsAutoPlaying2.html"]

View File

@@ -15,5 +15,9 @@ support-files = [
["browser_wmfme_crash.js"]
["browser_wmfme_glean_first_frame_loaded_time.js"]
skip-if = [
"os == 'win' && os_version == '11.26100' && processor == 'x86_64' && opt", # Bug 1894541
"os == 'win' && os_version == '11.26100' && processor == 'x86_64' && ccov", # Bug 1894541
]
["browser_wmfme_max_crashes.js"]

View File

@@ -769,6 +769,8 @@ skip-if = ["true"] # bug 475110 - disabled since we don't play Wave files standa
skip-if = [
"os == 'android' && !is_emulator", # Bug 1860492
"os == 'win' && os_version == '11.2009' && bits == 64 && !debug", # Bug 1889375
"os == 'win' && os_version == '11.26100' && bits == 64 && asan && wmfme", # Bug 1889375
"os == 'win' && os_version == '11.26100' && bits == 64 && opt && wmfme", # Bug 1889375
]
["test_constants.html"]

View File

@@ -139,6 +139,7 @@ skip-if = [
skip-if = [
"os == 'android'", # no screenshare or windowshare on android
"win11_2009 && debug", # Bug 1787039
"os == 'win' && os_version == '11.26100' && processor == 'x86_64' && debug", # Bug 1787039
]
["test_getUserMedia_spinEventLoop.html"]

View File

@@ -19,6 +19,7 @@ support-files = [
skip-if = [
"os == 'android'", # 1910127
"tsan", # 1885378
"os == 'win' && os_version == '11.26100' && processor == 'x86_64' && asan", # Bug 1911093
]
["test_update.html"]

View File

@@ -3,5 +3,5 @@ skip-if(Android) != moz-icon-1.html about:blank
== moz-icon-blank-1.html moz-icon-blank-1-ref.html
skip-if(Android) != moz-icon-blank-1-ref.html moz-icon-blank-1-antiref.html
skip-if(Android) != moz-icon-blank-1-ref.html moz-icon-blank-1-antiref2.html
fuzzy-if(cocoaWidget,44-49,335-348) fuzzy-if(winWidget,64-141,45-191) == moz-icon-blank-1-almostref.html moz-icon-blank-1-ref.html
fuzzy-if(cocoaWidget,44-49,335-348) fuzzy-if(winWidget,54-141,30-191) == moz-icon-blank-1-almostref.html moz-icon-blank-1-ref.html
pref(image.testing.decode-sync.enabled,false) == 1805599-1.html 1805599-1-ref.html

View File

@@ -103,7 +103,7 @@ skip-if(winWidget) != fractional-transform-2.html about:blank
== partially-scrolled-svg-group.html partially-scrolled-svg-group-ref.html
== paintedlayer-recycling-8.html paintedlayer-recycling-8-ref.html
pref(image.downscale-during-decode.enabled,true) == jetstream-scroll.html jetstream-scroll-ref.html
skip-if(winWidget&&AddressSanitizer&&swgl) pref(image.downscale-during-decode.enabled,true) == jetstream-scroll.html jetstream-scroll-ref.html
fuzzy(0-2,0-2) == svg-paint-rect-changes.html svg-paint-rect-changes-ref.html
== border-radius-1.html border-radius-1-ref.html

View File

@@ -15,6 +15,9 @@ skip-if = [
["browser_experimentstore_load.js"]
["browser_experimentstore_load_single_feature.js"]
skip-if = [
"os == 'win' && os_version == '11.26100' && processor == 'x86_64' && opt && socketprocess_networking", # bug 1781904
]
["browser_nimbus_telemetry.js"]
tags = "remote-settings"

View File

@@ -171,6 +171,9 @@ skip-if = ["os == 'linux' && os_version == '18.04' && processor == 'x86_64'"] #
["browser_text_tracks_webvtt_2.js"]
["browser_text_tracks_webvtt_3.js"]
skip-if = [
"os == 'win' && os_version == '11.26100' && processor == 'x86_64' && ccov",
]
["browser_thirdPartyIframe.js"]

View File

@@ -58,6 +58,7 @@ skip-if = ["verify && os == 'mac'"] # bug 1675609
["browser_print_in_container.js"]
skip-if = [
"os == 'linux' && os_version == '18.04' && processor == 'x86_64' && swgl && tsan", # Bug 1683730
"os == 'win' && os_version == '11.26100' && processor == 'x86_64' && ccov",
]
["browser_print_margins.js"]

View File

@@ -42,6 +42,8 @@ fail-if = ["a11y_checks"] # Bug 1854538 clicked browser may not be focusable
skip-if = [
"os == 'linux' && os_version == '18.04' && processor == 'x86_64' && opt && a11y_checks && swgl", # Bug 1710788 # Bug 1869961
"os == 'win' && os_version == '11.2009' && processor == 'x86_64'",
"os == 'win' && os_version == '11.26100' && processor == 'x86_64' && asan",
"os == 'win' && os_version == '11.26100' && processor == 'x86_64' && debug",
]
["browser_bug451286.js"]

View File

@@ -55,6 +55,9 @@ skip-if = [
["browser_LayoutUtils.js"]
["browser_Troubleshoot.js"]
skip-if = [
"os == 'win' && os_version == '11.26100' && bits == 64 && asan", # Bug 1863166
]
["browser_web_channel.js"]
https_first_disabled = true

View File

@@ -534,6 +534,8 @@ TEST_F(AvailableMemoryWatcherFixture, AlwaysActive) {
telemetryEvent.ValidateLastEvent(cx.GetJSContext());
}
// skip-if asan, Bug 1940978
#if !(defined(MOZ_ASAN))
TEST_F(AvailableMemoryWatcherFixture, InactiveToActive) {
AutoJSContextWithGlobal cx(mCleanGlobal);
MemoryWatcherTelemetryEvent telemetryEvent(cx.GetJSContext());
@@ -569,6 +571,7 @@ TEST_F(AvailableMemoryWatcherFixture, InactiveToActive) {
telemetryEvent.ValidateLastEvent(cx.GetJSContext());
}
#endif
TEST_F(AvailableMemoryWatcherFixture, HighCommitSpace_AlwaysActive) {
// Setting a low threshold simulates a high commit space.