You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by jo...@apache.org on 2019/01/10 14:15:32 UTC

svn commit: r1850941 - /httpd/test/framework/trunk/t/security/CVE-2009-3555.t

Author: jorton
Date: Thu Jan 10 14:15:32 2019
New Revision: 1850941

URL: http://svn.apache.org/viewvc?rev=1850941&view=rev
Log:
Skip tests for TLSv1.3 (where there is no "renegotiation" as such).

Modified:
    httpd/test/framework/trunk/t/security/CVE-2009-3555.t

Modified: httpd/test/framework/trunk/t/security/CVE-2009-3555.t
URL: http://svn.apache.org/viewvc/httpd/test/framework/trunk/t/security/CVE-2009-3555.t?rev=1850941&r1=1850940&r2=1850941&view=diff
==============================================================================
--- httpd/test/framework/trunk/t/security/CVE-2009-3555.t (original)
+++ httpd/test/framework/trunk/t/security/CVE-2009-3555.t Thu Jan 10 14:15:32 2019
@@ -18,6 +18,12 @@ Apache::TestRequest::set_client_cert("cl
 Apache::TestRequest::module('mod_ssl');
 
 my $sock = Apache::TestRequest::vhost_socket('mod_ssl');
+
+if ($sock && $sock->connected && $sock->get_sslversion() eq "TLSv1_3") {
+    skip "Skipping test for TLSv1.3" foreach(1..4);
+    exit;
+}
+
 ok $sock && $sock->connected;