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 2010/06/17 20:56:46 UTC

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

Author: rjung
Date: Thu Jun 17 18:56:45 2010
New Revision: 955707

URL: http://svn.apache.org/viewvc?rev=955707&view=rev
Log:
Fix module list comparison test using mod-info.

When statically linked mod_ldap is detected as
util_ldap.c during generation of the configuration.

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=955707&r1=955706&r2=955707&view=diff
==============================================================================
--- httpd/test/framework/trunk/t/modules/info.t (original)
+++ httpd/test/framework/trunk/t/modules/info.t Thu Jun 17 18:56:45 2010
@@ -33,6 +33,9 @@ foreach (sort keys %$mods) {
         push(@expected,"$1.c");
     } elsif ($_ eq 'mod_mpm_simple.c') {
         push(@expected,'simple_api.c');
+    # statically linked mod_ldap
+    } elsif ($_ eq 'util_ldap.c') {
+        push(@expected,'mod_ldap.c');
     } else {
         push(@expected,$_);
     }