Title: [286036] trunk/Tools
Revision
286036
Author
[email protected]
Date
2021-11-18 15:51:30 -0800 (Thu, 18 Nov 2021)

Log Message

[ Monterey ] 2 TestWebKitAPI.WebKit.DisplayName (api-tests) are constantly failing
<rdar://80353834>

Uneviewed test gardening.

* TestWebKitAPI/Tests/WebKitCocoa/DisplayName.mm:
(TestWebKitAPI::TEST):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (286035 => 286036)


--- trunk/Tools/ChangeLog	2021-11-18 23:20:09 UTC (rev 286035)
+++ trunk/Tools/ChangeLog	2021-11-18 23:51:30 UTC (rev 286036)
@@ -1,3 +1,13 @@
+2021-11-18  Robert Jenner  <[email protected]>
+
+        [ Monterey ] 2 TestWebKitAPI.WebKit.DisplayName (api-tests) are constantly failing
+        <rdar://80353834>
+
+        Uneviewed test gardening.
+
+        * TestWebKitAPI/Tests/WebKitCocoa/DisplayName.mm:
+        (TestWebKitAPI::TEST):
+
 2021-11-18  Jonathan Bedard  <[email protected]>
 
         Link Python packages to GitHub

Modified: trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/DisplayName.mm (286035 => 286036)


--- trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/DisplayName.mm	2021-11-18 23:20:09 UTC (rev 286035)
+++ trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/DisplayName.mm	2021-11-18 23:51:30 UTC (rev 286036)
@@ -53,7 +53,12 @@
     }];
 }
 
+// FIXME: Re-enable this test for Monterey+ once rdar://80353834 is resolved.
+#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 120000
+TEST(WebKit, DISABLED_CustomDisplayName)
+#else
 TEST(WebKit, CustomDisplayName)
+#endif
 {
     auto configuration = adoptNS([WKWebViewConfiguration new]);
     NSString *displayNameToSet = @"test display name";
@@ -66,6 +71,10 @@
     Util::run(&done);
 }
 
+// FIXME: Re-enable this test for Monterey+ once rdar://80353834 is resolved.
+#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 120000
+TEST(WebKit, DISABLED_DefaultDisplayName)
+#else
 TEST(WebKit, DefaultDisplayName)
 {
     auto webView = adoptNS([[TestWKWebView alloc] initWithFrame:CGRectMake(0, 0, 320, 500)]);
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to