I had to make this change this morning to get the Apache::Test tests to get
past

/usr/bin/perl -Iblib/arch -Iblib/lib \
t/TEST -clean
Use of uninitialized value in -e at lib/Apache/TestConfigParse.pm line 115.
make: *** [test_clean] Error 29

I didn't look into it...

--Geoff

Index: TestConfigParse.pm
===================================================================
RCS file:
/home/cvspublic/httpd-test/perl-framework/Apache-Test/lib/Apache/TestConfigP
arse.pm,v
retrieving revision 1.6
diff -u -r1.6 TestConfigParse.pm
--- TestConfigParse.pm  2001/08/16 22:41:37     1.6
+++ TestConfigParse.pm  2001/08/20 12:04:56
@@ -110,7 +110,7 @@
     $self->get_httpd_static_modules;
     $self->get_httpd_defines;
 
-    my $file = $self->{vars}->{httpd_conf};
+    my $file = $self->{vars}->{httpd_conf} || "";
 
     unless (-e $file) {
         if (my $base = $self->{httpd_basedir}) {

Reply via email to