Title: [285963] trunk/Tools
Revision
285963
Author
[email protected]
Date
2021-11-17 15:53:55 -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: Fix number in version check.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (285962 => 285963)


--- trunk/Tools/ChangeLog	2021-11-17 23:46:24 UTC (rev 285962)
+++ trunk/Tools/ChangeLog	2021-11-17 23:53:55 UTC (rev 285963)
@@ -1,5 +1,14 @@
 2021-11-17  Ryan Haddad  <[email protected]>
 
+        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: Fix number in version check.
+
+2021-11-17  Ryan Haddad  <[email protected]>
+
         [Monterey] TestWebKitAPI.PrivateClickMeasurement.Daemon* tests timing out: Failed to connect to mach service org.webkit.pcmtestdaemon.service
         https://bugs.webkit.org/show_bug.cgi?id=232890
 

Modified: trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/WebPushDaemon.mm (285962 => 285963)


--- trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/WebPushDaemon.mm	2021-11-17 23:46:24 UTC (rev 285962)
+++ trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/WebPushDaemon.mm	2021-11-17 23:53:55 UTC (rev 285963)
@@ -156,7 +156,7 @@
 }
 
 // FIXME: Re-enable this test for Monterey+ once webkit.org/232857 is resolved.
-#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 110000
+#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 120000
 TEST(WebPushD, DISABLED_BasicCommunication)
 #else
 TEST(WebPushD, BasicCommunication)
@@ -202,7 +202,7 @@
 )WEBPUSHRESOURCE";
 
 // FIXME: Re-enable this test for Monterey+ once webkit.org/232857 is resolved.
-#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 110000
+#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 120000
 TEST(WebPushD, DISABLED_PermissionManagement)
 #else
 TEST(WebPushD, PermissionManagement)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to