Title: [285960] trunk/Tools
Revision
285960
Author
ryanhad...@apple.com
Date
2021-11-17 15:35:44 -0800 (Wed, 17 Nov 2021)

Log Message

ASSERT NOT REACHED under WebKit::Daemon::ConnectionToMachService seen with TestWebKitAPI.WebPushD.BasicCommunication and PermissionManagement
https://bugs.webkit.org/show_bug.cgi?id=232857

Unreviewed test gardening.

* TestWebKitAPI/Tests/WebKitCocoa/WebPushDaemon.mm:
(TestWebKitAPI::TEST): Disable the tests for Monterey.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (285959 => 285960)


--- trunk/Tools/ChangeLog	2021-11-17 23:12:54 UTC (rev 285959)
+++ trunk/Tools/ChangeLog	2021-11-17 23:35:44 UTC (rev 285960)
@@ -1,3 +1,13 @@
+2021-11-17  Ryan Haddad  <ryanhad...@apple.com>
+
+        ASSERT NOT REACHED under WebKit::Daemon::ConnectionToMachService seen with TestWebKitAPI.WebPushD.BasicCommunication and PermissionManagement
+        https://bugs.webkit.org/show_bug.cgi?id=232857
+
+        Unreviewed test gardening.
+
+        * TestWebKitAPI/Tests/WebKitCocoa/WebPushDaemon.mm:
+        (TestWebKitAPI::TEST): Disable the tests for Monterey.
+
 2021-11-16  Ryan Haddad  <ryanhad...@apple.com>
 
         [macOS Debug] TestWebKitAPI.WKInspectorExtensionDelegate.InspectedPageNavigatedCallbacks is timing out

Modified: trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/WebPushDaemon.mm (285959 => 285960)


--- trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/WebPushDaemon.mm	2021-11-17 23:12:54 UTC (rev 285959)
+++ trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/WebPushDaemon.mm	2021-11-17 23:35:44 UTC (rev 285960)
@@ -155,7 +155,12 @@
     EXPECT_NULL(error);
 }
 
+// FIXME: Re-enable this test for Monterey+ once webkit.org/232857 is resolved.
+#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 110000
+TEST(WebPushD, DISABLED_BasicCommunication)
+#else
 TEST(WebPushD, BasicCommunication)
+#endif
 {
     NSURL *tempDir = setUpTestWebPushD();
 
@@ -196,7 +201,12 @@
 </script>
 )WEBPUSHRESOURCE";
 
+// FIXME: Re-enable this test for Monterey+ once webkit.org/232857 is resolved.
+#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 110000
+TEST(WebPushD, DISABLED_PermissionManagement)
+#else
 TEST(WebPushD, PermissionManagement)
+#endif
 {
     NSURL *tempDirectory = setUpTestWebPushD();
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to