hi all...

TEST -clean doesn't currently pick up the stuff Apache creates in logs, so
the logs directory itself isn't removed.

not that it matters too much, but I was expecting TEST -clean to leave me
with only the stuff I needed to add to MANIFEST

--Geoff

Index: TestConfig.pm
===================================================================
RCS file:
/home/cvspublic/httpd-test/perl-framework/Apache-Test/lib/Apache/TestConfig.
pm,v
retrieving revision 1.32
diff -u -r1.32 TestConfig.pm
--- TestConfig.pm       2001/08/13 05:07:53     1.32
+++ TestConfig.pm       2001/08/16 12:08:07
@@ -239,6 +239,11 @@
     unless (-e $sem) {
         $self->{clean}->{files}->{$sem} = 1;
     }
+
+    foreach my $file (qw(access_log error_log httpd.pid)) {
+        $self->{clean}->{files}->{catfile $vars->{t_logs}, $file} = 1;
+    }
+        
 }
 
 sub configure_httpd_eapi {

Reply via email to