Title: [252235] trunk/Tools
Revision
252235
Author
achristen...@apple.com
Date
2019-11-08 02:53:53 -0800 (Fri, 08 Nov 2019)

Log Message

Build fix for platforms without WebRTC's SSL after r252185
https://bugs.webkit.org/show_bug.cgi?id=203934

* TestWebKitAPI/Tests/WebKitCocoa/ResourceLoadStatistics.mm:
The new test uses TLS with the HTTPS proxy.  Don't compile it if we can't compile it.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (252234 => 252235)


--- trunk/Tools/ChangeLog	2019-11-08 09:19:03 UTC (rev 252234)
+++ trunk/Tools/ChangeLog	2019-11-08 10:53:53 UTC (rev 252235)
@@ -1,3 +1,11 @@
+2019-11-08  Alex Christensen  <achristen...@webkit.org>
+
+        Build fix for platforms without WebRTC's SSL after r252185
+        https://bugs.webkit.org/show_bug.cgi?id=203934
+
+        * TestWebKitAPI/Tests/WebKitCocoa/ResourceLoadStatistics.mm:
+        The new test uses TLS with the HTTPS proxy.  Don't compile it if we can't compile it.
+
 2019-11-08  Carlos Garcia Campos  <cgar...@igalia.com>
 
         [GTK] Add pointer lock permission request API

Modified: trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/ResourceLoadStatistics.mm (252234 => 252235)


--- trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/ResourceLoadStatistics.mm	2019-11-08 09:19:03 UTC (rev 252234)
+++ trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/ResourceLoadStatistics.mm	2019-11-08 10:53:53 UTC (rev 252235)
@@ -504,6 +504,7 @@
 
 @end
 
+#if HAVE(SSL)
 TEST(ResourceLoadStatistics, DataTaskIdentifierCollision)
 {
     using namespace TestWebKitAPI;
@@ -573,6 +574,7 @@
     EXPECT_TRUE(contains(messages, @"1"));
     EXPECT_TRUE(contains(messages, @"2"));
 }
+#endif // HAVE(SSL)
 
 TEST(ResourceLoadStatistics, NoMessagesWhenNotTesting)
 {
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to