dougm       01/04/10 09:48:50

  Modified:    Apache-Test/lib/Apache TestServer.pm
  Log:
  include -d ServerRoot in the args to start test httpd
  
  Revision  Changes    Path
  1.4       +2 -1      modperl-2.0/Apache-Test/lib/Apache/TestServer.pm
  
  Index: TestServer.pm
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/Apache-Test/lib/Apache/TestServer.pm,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- TestServer.pm     2001/04/03 17:17:10     1.3
  +++ TestServer.pm     2001/04/10 16:48:49     1.4
  @@ -57,7 +57,8 @@
   
   sub args {
       my $self = shift;
  -    "-f $self->{config}->{vars}->{t_conf_file}";
  +    my $vars = $self->{config}->{vars};
  +    "-d $vars->{serverroot} -f $vars->{t_conf_file}";
   }
   
   my %one_process = (1 => '-X', 2 => '-DONE_PROCESS');
  
  
  

Reply via email to