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/11/21 15:45:53 UTC

svn commit: r1870094 - /httpd/test/framework/trunk/t/ssl/pha.t

Author: jorton
Date: Thu Nov 21 15:45:52 2019
New Revision: 1870094

URL: http://svn.apache.org/viewvc?rev=1870094&view=rev
Log:
Also skip PHA tests for < 2.5 since they fail.

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

Modified: httpd/test/framework/trunk/t/ssl/pha.t
URL: http://svn.apache.org/viewvc/httpd/test/framework/trunk/t/ssl/pha.t?rev=1870094&r1=1870093&r2=1870094&view=diff
==============================================================================
--- httpd/test/framework/trunk/t/ssl/pha.t (original)
+++ httpd/test/framework/trunk/t/ssl/pha.t Thu Nov 21 15:45:52 2019
@@ -24,7 +24,7 @@ if (!defined &IO::Socket::SSL::can_pha |
     exit 0;
 }
 
-plan tests => 4;
+plan tests => 4, need_min_apache_version("2.5.1");
 
 $r = GET("/verify/", cert => undef);
 ok t_cmp($r->code, 403, "access must be denied without client certificate");