You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by co...@apache.org on 2016/12/22 20:02:34 UTC

svn commit: r1775721 - /httpd/test/framework/trunk/t/ssl/require.t

Author: covener
Date: Thu Dec 22 20:02:34 2016
New Revision: 1775721

URL: http://svn.apache.org/viewvc?rev=1775721&view=rev
Log:
hasn't worked since at least 2.2.19

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

Modified: httpd/test/framework/trunk/t/ssl/require.t
URL: http://svn.apache.org/viewvc/httpd/test/framework/trunk/t/ssl/require.t?rev=1775721&r1=1775720&r2=1775721&view=diff
==============================================================================
--- httpd/test/framework/trunk/t/ssl/require.t (original)
+++ httpd/test/framework/trunk/t/ssl/require.t Thu Dec 22 20:02:34 2016
@@ -41,7 +41,12 @@ if ($have_sslrequire_oid) {
 
     ok GET_RC($url, cert => undef) != 200;
 
-    ok GET_RC($url, cert => 'client_ok') == 200;
+    if (!have_min_apache_version("2.4.0")) { 
+       skip "not backported, see 2.2.19 vote thread for analysis";
+    }
+    else { 
+        ok GET_RC($url, cert => 'client_ok') == 200;
+    }
 
     ok GET_RC($url, cert => 'client_snakeoil') != 200;