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 2012/02/01 13:41:21 UTC

svn commit: r1239106 - /httpd/test/framework/trunk/t/modules/info.t

Author: rjung
Date: Wed Feb  1 12:41:21 2012
New Revision: 1239106

URL: http://svn.apache.org/viewvc?rev=1239106&view=rev
Log:
mod_apreq in trunk identifies itself as
mod_apreq2 therefore lets the mod_info test fail.

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

Modified: httpd/test/framework/trunk/t/modules/info.t
URL: http://svn.apache.org/viewvc/httpd/test/framework/trunk/t/modules/info.t?rev=1239106&r1=1239105&r2=1239106&view=diff
==============================================================================
--- httpd/test/framework/trunk/t/modules/info.t (original)
+++ httpd/test/framework/trunk/t/modules/info.t Wed Feb  1 12:41:21 2012
@@ -21,6 +21,8 @@ foreach (split /\n/, $info) {
     if ($_ =~ /<a name=\"(\w+\.c)\">/) {
         if ($1 eq 'util_ldap.c') {
             push(@actual,'mod_ldap.c');
+        } elsif ($1 eq 'mod_apreq2.c') {
+            push(@actual,'mod_apreq.c');
         } else {
             push(@actual, $1);
         }