You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by el...@apache.org on 2017/05/23 14:15:45 UTC

svn commit: r1795917 - /httpd/test/framework/trunk/t/apache/if_sections.t

Author: elukey
Date: Tue May 23 14:15:45 2017
New Revision: 1795917

URL: http://svn.apache.org/viewvc?rev=1795917&view=rev
Log:
Update if_sections.t tests after r1795906

Modified:
    httpd/test/framework/trunk/t/apache/if_sections.t

Modified: httpd/test/framework/trunk/t/apache/if_sections.t
URL: http://svn.apache.org/viewvc/httpd/test/framework/trunk/t/apache/if_sections.t?rev=1795917&r1=1795916&r2=1795917&view=diff
==============================================================================
--- httpd/test/framework/trunk/t/apache/if_sections.t (original)
+++ httpd/test/framework/trunk/t/apache/if_sections.t Tue May 23 14:15:45 2017
@@ -12,7 +12,7 @@ use Apache::TestUtil;
 # <If> block. 
 #
 
-plan tests => (have_min_apache_version('2.5') ? 23 : 11) * 2,
+plan tests => (have_min_apache_version('2.4.26') ? 23 : 11) * 2,
                   need need_lwp,
                   need_module('mod_headers'),
                   need_module('mod_proxy'),
@@ -41,7 +41,7 @@ do_test('/',                '',
 do_test('/foo.if_test',     '',         undef); 
 do_test('/foo.if_test',     '1',        'global1');
 
-if (have_min_apache_version('2.5')) {
+if (have_min_apache_version('2.4.26')) {
     do_test('/foo.if_test',     '1 11',     'global1, nested11, nested113');
     do_test('/foo.if_test',     '1 11 111', 'global1, nested11, nested111');
     do_test('/foo.if_test',     '1 11 112', 'global1, nested11, nested112');
@@ -51,7 +51,7 @@ do_test('/foo.if_test',     '1 2',
 do_test('/dir/foo.txt',     '1 2',      'global1, dir1, dir2, dir_files1');
 do_test('/dir/',            '1 2',      'global1, dir1, dir2');
 
-if (have_min_apache_version('2.5')) {
+if (have_min_apache_version('2.4.26')) {
     do_test('/dir/',            '1 11',     'global1, dir1, nested11, nested113');
     do_test('/dir/',            '1 11 111', 'global1, dir1, nested11, nested111');
     do_test('/dir/',            '1 11 112', 'global1, dir1, nested11, nested112');
@@ -60,7 +60,7 @@ if (have_min_apache_version('2.5')) {
 do_test('/loc/',            '1 2',      'global1, loc1, loc2');
 do_test('/loc/foo.txt',     '1 2',      'global1, loc1, loc2');
 
-if (have_min_apache_version('2.5')) {
+if (have_min_apache_version('2.4.26')) {
     do_test('/loc/',            '1 11',     'global1, loc1, nested11, nested113');
     do_test('/loc/',            '1 11 111', 'global1, loc1, nested11, nested111');
     do_test('/loc/',            '1 11 112', 'global1, loc1, nested11, nested112');
@@ -68,7 +68,7 @@ if (have_min_apache_version('2.5')) {
 
 do_test('/loc/foo.if_test', '1 2',      'global1, files2, loc1, loc2');
 
-if (have_min_apache_version('2.5')) {
+if (have_min_apache_version('2.4.26')) {
     do_test('/loc/foo.if_test', '1 2 11',     'global1, files2, loc1, loc2, nested11, nested113');
     do_test('/loc/foo.if_test', '1 2 11 111', 'global1, files2, loc1, loc2, nested11, nested111');
     do_test('/loc/foo.if_test', '1 2 11 112', 'global1, files2, loc1, loc2, nested11, nested112');