stas 2004/02/25 13:35:40
Modified: perl-framework/Apache-Test/lib/Apache TestRun.pm
Log:
move custom_config_load untill after getopts() so that -trace=debug will
affect trace calls inside custom_config_load()
Revision Changes Path
1.154 +3 -2
httpd-test/perl-framework/Apache-Test/lib/Apache/TestRun.pm
Index: TestRun.pm
===================================================================
RCS file:
/home/cvs/httpd-test/perl-framework/Apache-Test/lib/Apache/TestRun.pm,v
retrieving revision 1.153
retrieving revision 1.154
diff -u -u -r1.153 -r1.154
--- TestRun.pm 25 Feb 2004 21:33:45 -0000 1.153
+++ TestRun.pm 25 Feb 2004 21:35:40 -0000 1.154
@@ -645,11 +645,12 @@
$self->set_ulimit;
$self->set_env; #make sure these are always set
- custom_config_load();
-
my(@argv) = @_;
$self->getopts([EMAIL PROTECTED]);
+
+ # must be called after getopts so the tracing will be set right
+ custom_config_load();
$self->pre_configure() if $self->can('pre_configure');