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 19:45:01 UTC

svn commit: r1775719 - /httpd/test/framework/trunk/t/modules/ext_filter.t

Author: covener
Date: Thu Dec 22 19:45:01 2016
New Revision: 1775719

URL: http://svn.apache.org/viewvc?rev=1775719&view=rev
Log:
no need to show this new test to 2.2.x testers


Modified:
    httpd/test/framework/trunk/t/modules/ext_filter.t

Modified: httpd/test/framework/trunk/t/modules/ext_filter.t
URL: http://svn.apache.org/viewvc/httpd/test/framework/trunk/t/modules/ext_filter.t?rev=1775719&r1=1775718&r2=1775719&view=diff
==============================================================================
--- httpd/test/framework/trunk/t/modules/ext_filter.t (original)
+++ httpd/test/framework/trunk/t/modules/ext_filter.t Thu Dec 22 19:45:01 2016
@@ -8,6 +8,10 @@ use Apache::TestUtil;
 Apache::TestRequest::user_agent(keep_alive => 1);
 
 my $iters = 10;
+if (!have_min_apache_version("2.4.0")) { 
+  # Not interested in 2.2
+  $iters = 0;
+}
 my $tests = 4 + $iters * 2;
 
 plan tests => $tests, need 
@@ -25,6 +29,8 @@ my $r = POST "/apache/extfilter/in-foo/m
 ok t_cmp($r->code, 200, "echo worked");
 ok t_cmp($r->content, "barbar\n", "request body filtered");
 
+
+
 # PR 60375 -- appears to be intermittent failure with 2.4.x ... but works with trunk?
 foreach (1..$iters) {
     $r = POST "/apache/extfilter/out-limit/modules/cgi/perl_echo.pl", content => "foo and bar\n";