Title: [285962] trunk/Tools
Revision
285962
Author
[email protected]
Date
2021-11-17 15:46:24 -0800 (Wed, 17 Nov 2021)

Log Message

[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

Unreviewed test gardening.

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

Modified Paths

Diff

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


--- trunk/Tools/ChangeLog	2021-11-17 23:43:39 UTC (rev 285961)
+++ trunk/Tools/ChangeLog	2021-11-17 23:46:24 UTC (rev 285962)
@@ -1,3 +1,13 @@
+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
+
+        Unreviewed test gardening.
+
+        * TestWebKitAPI/Tests/WebKitCocoa/EventAttribution.mm:
+        (TestWebKitAPI::TEST): Disable tests for Monterey.
+
 2021-11-17  Alex Christensen  <[email protected]>
 
         Enable adattributiond testing on iOS simulator

Modified: trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/EventAttribution.mm (285961 => 285962)


--- trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/EventAttribution.mm	2021-11-17 23:43:39 UTC (rev 285961)
+++ trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/EventAttribution.mm	2021-11-17 23:46:24 UTC (rev 285962)
@@ -520,7 +520,12 @@
 #endif
 }
 
+// FIXME: Re-enable this test for Monterey+ once webkit.org/232890 is resolved.
+#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 120000
+TEST(PrivateClickMeasurement, DISABLED_DaemonBasicFunctionality)
+#else
 TEST(PrivateClickMeasurement, DaemonBasicFunctionality)
+#endif
 {
     auto [tempDir, configuration] = setUpDaemon(configurationWithoutUsingDaemon().autorelease());
     attemptConnectionInProcessWithoutEntitlement();
@@ -555,7 +560,12 @@
     return webView;
 }
 
+// FIXME: Re-enable this test for Monterey+ once webkit.org/232890 is resolved.
+#if __MAC_OS_X_VERSION_MIN_REQUIRED >= 120000
+TEST(PrivateClickMeasurement, DISABLED_DaemonDebugMode)
+#else
 TEST(PrivateClickMeasurement, DaemonDebugMode)
+#endif
 {
     auto [tempDir, configuration] = setUpDaemon([WKWebViewConfiguration _test_configurationWithTestPlugInClassName:@"BundlePageConsoleMessage"]);
     Vector<String> consoleMessages;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to