You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rj...@apache.org on 2018/10/19 07:27:53 UTC

svn commit: r1844310 - /httpd/test/framework/trunk/t/ssl/ocsp.t

Author: rjung
Date: Fri Oct 19 07:27:53 2018
New Revision: 1844310

URL: http://svn.apache.org/viewvc?rev=1844310&view=rev
Log:
Reenable ocsp tests for old OpenSSL.

This should work with the fix in 1844309.

Disabling based on OpenSSL version in test
framework also wasn't correct. Relevant would
be the OpenSSL version of the binary called
by the ocsp.pl CGI script running in the server.

Modified:
    httpd/test/framework/trunk/t/ssl/ocsp.t

Modified: httpd/test/framework/trunk/t/ssl/ocsp.t
URL: http://svn.apache.org/viewvc/httpd/test/framework/trunk/t/ssl/ocsp.t?rev=1844310&r1=1844309&r2=1844310&view=diff
==============================================================================
--- httpd/test/framework/trunk/t/ssl/ocsp.t (original)
+++ httpd/test/framework/trunk/t/ssl/ocsp.t Fri Oct 19 07:27:53 2018
@@ -6,8 +6,6 @@ use Apache::TestSSLCA;
 use Apache::TestRequest;
 use Apache::TestConfig ();
 
-use Net::SSLeay;
-
 #if keepalives are on, renegotiation not happen again once
 #a client cert is presented.  so on test #3, the cert from #2
 #will be used.  this test scenerio would never
@@ -23,7 +21,6 @@ Apache::TestRequest::module('ssl_ocsp');
 # support in earlier versions without messing around with stderr
 my $openssl = Apache::TestSSLCA::openssl();
 if (!have_min_apache_version('2.4.26')
-    or Net::SSLeay::OPENSSL_VERSION_NUMBER() < 0x10002000
     or `$openssl list -commands 2>&1` !~ /ocsp/) {
     print "1..0 # skip: No OpenSSL or mod_ssl OCSP support";
     exit 0;