You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Improve test suite to exclude TLS 1.3 tests on PHP 7.3
Explicit TLS 1.3 support will be available in PHP 7.4:
php/php-src#3909
Older PHP versions implicitly support TLS 1.3 provided that the
underlying OpenSSL version supports TLS 1.3. However, for PHP 7.3 some
recent changes implicitly disable TLS 1.3, so we skip TLS 1.3 tests on
affected PHP versions: php/php-src#3317
// @link https://github.com/php/php-src/pull/3909 explicitly adds TLS 1.3 on PHP 7.4
55
+
// @link https://github.com/php/php-src/pull/3317 implicitly limits to TLS 1.2 on PHP 7.3
56
+
// all older PHP versions support TLS 1.3 (provided OpenSSL supports it), but only PHP 7 allows checking the version
57
+
$this->markTestSkipped('Test requires PHP 7+ for crypto meta data (but excludes PHP 7.3 because it implicitly limits to TLS 1.2) and OpenSSL 1.1.1+ for TLS 1.3');
0 commit comments