Title: [266423] branches/safari-610-branch/Tools
- Revision
- 266423
- Author
- [email protected]
- Date
- 2020-09-01 18:18:53 -0700 (Tue, 01 Sep 2020)
Log Message
Cherry-pick r266102. rdar://problem/68160088
Fix TLSVersion.DefaultBehavior on Mojave
https://bugs.webkit.org/show_bug.cgi?id=215791
* TestWebKitAPI/Tests/WebKitCocoa/TLSDeprecation.mm:
HTTPServer::Protocol::HttpsWithLegacyTLS uses tls_protocol_version_t, so this test times out on Mojave.
Enable it for newer OSes.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@266102 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Modified Paths
Diff
Modified: branches/safari-610-branch/Tools/ChangeLog (266422 => 266423)
--- branches/safari-610-branch/Tools/ChangeLog 2020-09-02 01:18:51 UTC (rev 266422)
+++ branches/safari-610-branch/Tools/ChangeLog 2020-09-02 01:18:53 UTC (rev 266423)
@@ -1,5 +1,29 @@
2020-09-01 Alan Coon <[email protected]>
+ Cherry-pick r266102. rdar://problem/68160088
+
+ Fix TLSVersion.DefaultBehavior on Mojave
+ https://bugs.webkit.org/show_bug.cgi?id=215791
+
+ * TestWebKitAPI/Tests/WebKitCocoa/TLSDeprecation.mm:
+ HTTPServer::Protocol::HttpsWithLegacyTLS uses tls_protocol_version_t, so this test times out on Mojave.
+ Enable it for newer OSes.
+
+
+
+ git-svn-id: https://svn.webkit.org/repository/webkit/trunk@266102 268f45cc-cd09-0410-ab3c-d52691b4dbfc
+
+ 2020-08-24 Alex Christensen <[email protected]>
+
+ Fix TLSVersion.DefaultBehavior on Mojave
+ https://bugs.webkit.org/show_bug.cgi?id=215791
+
+ * TestWebKitAPI/Tests/WebKitCocoa/TLSDeprecation.mm:
+ HTTPServer::Protocol::HttpsWithLegacyTLS uses tls_protocol_version_t, so this test times out on Mojave.
+ Enable it for newer OSes.
+
+2020-09-01 Alan Coon <[email protected]>
+
Cherry-pick r266100. rdar://problem/68160088
Make TLSVersion.DefaultBehavior more robust
Modified: branches/safari-610-branch/Tools/TestWebKitAPI/Tests/WebKitCocoa/TLSDeprecation.mm (266422 => 266423)
--- branches/safari-610-branch/Tools/TestWebKitAPI/Tests/WebKitCocoa/TLSDeprecation.mm 2020-09-02 01:18:51 UTC (rev 266422)
+++ branches/safari-610-branch/Tools/TestWebKitAPI/Tests/WebKitCocoa/TLSDeprecation.mm 2020-09-02 01:18:53 UTC (rev 266423)
@@ -144,7 +144,7 @@
const uint16_t tls1_1 = 0x0302;
static NSString *defaultsKey = @"WebKitEnableLegacyTLS";
-#if HAVE(NETWORK_FRAMEWORK)
+#if HAVE(NETWORK_FRAMEWORK) && HAVE(TLS_PROTOCOL_VERSION_T)
TEST(TLSVersion, DefaultBehavior)
{
@@ -160,7 +160,7 @@
[delegate waitForDidFinishNavigation];
}
-#endif // HAVE(NETWORK_FRAMEWORK)
+#endif // HAVE(NETWORK_FRAMEWORK) && HAVE(TLS_PROTOCOL_VERSION_T)
#if HAVE(TLS_VERSION_DURING_CHALLENGE)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes