Changeset 266102 in webkit


Ignore:
Timestamp:
Aug 24, 2020, 10:04:44 PM (5 years ago)
Author:
achristensen@apple.com
Message:

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.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r266100 r266102  
     12020-08-24  Alex Christensen  <achristensen@webkit.org>
     2
     3        Fix TLSVersion.DefaultBehavior on Mojave
     4        https://bugs.webkit.org/show_bug.cgi?id=215791
     5
     6        * TestWebKitAPI/Tests/WebKitCocoa/TLSDeprecation.mm:
     7        HTTPServer::Protocol::HttpsWithLegacyTLS uses tls_protocol_version_t, so this test times out on Mojave.
     8        Enable it for newer OSes.
     9
    1102020-08-24  Alex Christensen  <achristensen@webkit.org>
    211
  • trunk/Tools/TestWebKitAPI/Tests/WebKitCocoa/TLSDeprecation.mm

    r266100 r266102  
    145145static NSString *defaultsKey = @"WebKitEnableLegacyTLS";
    146146
    147 #if HAVE(NETWORK_FRAMEWORK)
     147#if HAVE(NETWORK_FRAMEWORK) && HAVE(TLS_PROTOCOL_VERSION_T)
    148148
    149149TEST(TLSVersion, DefaultBehavior)
     
    161161}
    162162
    163 #endif // HAVE(NETWORK_FRAMEWORK)
     163#endif // HAVE(NETWORK_FRAMEWORK) && HAVE(TLS_PROTOCOL_VERSION_T)
    164164
    165165#if HAVE(TLS_VERSION_DURING_CHALLENGE)
Note: See TracChangeset for help on using the changeset viewer.