Title: [265539] trunk/Tools
Revision
265539
Author
[email protected]
Date
2020-08-11 17:10:32 -0700 (Tue, 11 Aug 2020)

Log Message

Enable HTTP/2 ping API tests
https://bugs.webkit.org/show_bug.cgi?id=215402

Patch by Alex Christensen <[email protected]> on 2020-08-11
Reviewed by Darin Adler.

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

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (265538 => 265539)


--- trunk/Tools/ChangeLog	2020-08-11 23:59:21 UTC (rev 265538)
+++ trunk/Tools/ChangeLog	2020-08-12 00:10:32 UTC (rev 265539)
@@ -1,3 +1,13 @@
+2020-08-11  Alex Christensen  <[email protected]>
+
+        Enable HTTP/2 ping API tests
+        https://bugs.webkit.org/show_bug.cgi?id=215402
+
+        Reviewed by Darin Adler.
+
+        * TestWebKitAPI/Tests/WebKitCocoa/Preconnect.mm:
+        (TestWebKitAPI::TEST):
+
 2020-08-11  Brian Burg  <[email protected]>
 
         REGRESSION(r?): build-webkit --inspector-frontend always builds ImageDiff

Modified: trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/Preconnect.mm (265538 => 265539)


--- trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/Preconnect.mm	2020-08-11 23:59:21 UTC (rev 265538)
+++ trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/Preconnect.mm	2020-08-12 00:10:32 UTC (rev 265539)
@@ -167,8 +167,7 @@
     });
 }
 
-// This should remain disabled until rdar://problem/65055930 is integrated and bots are updated
-TEST(Preconnect, DISABLED_H2Ping)
+TEST(Preconnect, H2Ping)
 {
     size_t headersCount = 0;
     HTTPServer server([headersCount = &headersCount] (Connection tlsConnection) {
@@ -208,8 +207,7 @@
     EXPECT_EQ(headersCount, 1u);
 }
 
-// This should remain disabled until rdar://problem/65055930 is integrated and bots are updated
-TEST(Preconnect, DISABLED_H2PingFromWebCoreNSURLSession)
+TEST(Preconnect, H2PingFromWebCoreNSURLSession)
 {
     size_t headersCount = 0;
     HTTPServer server([headersCount = &headersCount] (Connection tlsConnection) {
@@ -233,8 +231,6 @@
     EXPECT_TRUE(receivedChallenge);
 }
 
-
-
 #endif // HAVE(PRECONNECT_PING)
 
 }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to