stas 2004/03/04 18:42:32
Modified: lib/ModPerl TestRun.pm
. Changes
Log:
respect $ENV{APACHE_TEST_STARTUP_TIMEOUT} settings if any
Revision Changes Path
1.20 +1 -0 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.19
retrieving revision 1.20
diff -u -u -r1.19 -r1.20
--- TestRun.pm 4 Mar 2004 06:01:06 -0000 1.19
+++ TestRun.pm 5 Mar 2004 02:42:32 -0000 1.20
@@ -32,6 +32,7 @@
# default timeout in secs (threaded mpms are extremely slow to
# startup, due to a slow perl_clone operation)
$self->{conf_opts}->{startup_timeout} ||=
+ $ENV{APACHE_TEST_STARTUP_TIMEOUT} ||
Apache::Build->build_config->mpm_is_threaded() ? 300 : 120;
$self->{conf_opts}->{maxclients} ||= MIN_MAXCLIENTS;
1.341 +2 -0 modperl-2.0/Changes
Index: Changes
===================================================================
RCS file: /home/cvs/modperl-2.0/Changes,v
retrieving revision 1.340
retrieving revision 1.341
diff -u -u -r1.340 -r1.341
--- Changes 4 Mar 2004 15:16:10 -0000 1.340
+++ Changes 5 Mar 2004 02:42:32 -0000 1.341
@@ -12,6 +12,8 @@
=item 1.99_13-dev
+respect $ENV{APACHE_TEST_STARTUP_TIMEOUT} settings if any [Stas]
+
Added tests for issuing subrequests from filters [Geoffrey Young]
Updated to the new Apache License Version 2.0 [Gozer]