stas 2003/08/26 15:19:19
Modified: lib/ModPerl TestRun.pm
Log:
s/should_load_module/should_skip_module/ has been done back in January
Revision Changes Path
1.10 +3 -4 modperl-2.0/lib/ModPerl/TestRun.pm
Index: TestRun.pm
===================================================================
RCS file: /home/cvs/modperl-2.0/lib/ModPerl/TestRun.pm,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- TestRun.pm 26 Aug 2003 22:17:57 -0000 1.9
+++ TestRun.pm 26 Aug 2003 22:19:19 -0000 1.10
@@ -15,12 +15,11 @@
use base qw(Apache::TestConfig);
-#don't inherit LoadModule perl_module from the apache httpd.conf
-
-sub should_load_module {
+# don't inherit LoadModule perl_module from the apache httpd.conf
+sub should_skip_module {
my($self, $name) = @_;
- $name eq 'mod_perl.c' ? 0 : $self->SUPER::should_load_module($name);
+ $name eq 'mod_perl.c' ? 1 : $self->SUPER::should_load_module($name);
}
1;