You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by tr...@apache.org on 2009/10/21 14:35:12 UTC

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

Author: trawick
Date: Wed Oct 21 12:35:11 2009
New Revision: 827986

URL: http://svn.apache.org/viewvc?rev=827986&view=rev
Log:
Don't expect mod_info to report modules that were skipped from the
configuration.

(Some of the modules in the list maintained by Apache-Test won't
actually be loaded.)

This resolves a test failure when mod_jk, mod_casp2, or
mod_bwshare is in the configuration.

Reviewed by: jorton

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=827986&r1=827985&r2=827986&view=diff
==============================================================================
--- httpd/test/framework/trunk/t/modules/info.t (original)
+++ httpd/test/framework/trunk/t/modules/info.t Wed Oct 21 12:35:11 2009
@@ -28,7 +28,7 @@
 }
 
 foreach (sort keys %$mods) {
-    push(@expected,$_) if $mods->{$_};
+    push(@expected,$_) if $mods->{$_} && !$config->should_skip_module($_);
 }
 @actual = sort @actual;
 @expected = sort @expected;