stas 2004/10/27 16:24:19
Modified: perl-framework/Apache-Test Changes
perl-framework/Apache-Test/lib/Apache TestConfig.pm
Log:
launder the require()d custom config filename to make -T happy
Submitted by: Torsten F�rtsch <[EMAIL PROTECTED]>
Revision Changes Path
1.189 +3 -0 httpd-test/perl-framework/Apache-Test/Changes
Index: Changes
===================================================================
RCS file: /home/cvs/httpd-test/perl-framework/Apache-Test/Changes,v
retrieving revision 1.188
retrieving revision 1.189
diff -u -u -r1.188 -r1.189
--- Changes 27 Oct 2004 18:00:37 -0000 1.188
+++ Changes 27 Oct 2004 23:24:19 -0000 1.189
@@ -8,6 +8,9 @@
=item 1.16-dev
+launder the require()d custom config filename to make -T happy
+[Torsten F�rtsch <torsten.foertsch gmx.net>]
+
added Apache::TestRunPHP and Apache::TestConfigPHP classes,
which provide a framework for server-side testing via PHP scripts
[Geoffrey Young]
1.250 +1 -0
httpd-test/perl-framework/Apache-Test/lib/Apache/TestConfig.pm
Index: TestConfig.pm
===================================================================
RCS file:
/home/cvs/httpd-test/perl-framework/Apache-Test/lib/Apache/TestConfig.pm,v
retrieving revision 1.249
retrieving revision 1.250
diff -u -u -r1.249 -r1.250
--- TestConfig.pm 20 Oct 2004 13:12:41 -0000 1.249
+++ TestConfig.pm 27 Oct 2004 23:24:19 -0000 1.250
@@ -2077,6 +2077,7 @@
if (my $custom_config_path = custom_config_path()) {
debug "loading custom config data from: '$custom_config_path'";
$custom_config_loaded++;
+ ($candidate) = $candidate=~/^(.*)/; # launder for -T
require $custom_config_path;
}
else {