Update of /cvsroot/http-webtest/HTTP-WebTest-Plugin-Apache/lib/HTTP/WebTest/Plugin
In directory sc8-pr-cvs1:/tmp/cvs-serv15227/lib/HTTP/WebTest/Plugin
Modified Files:
Apache.pm
Log Message:
Cosmetic fixes
Index: Apache.pm
===================================================================
RCS file: /cvsroot/http-webtest/HTTP-WebTest-Plugin-Apache/lib/HTTP/WebTest/Plugin/Apache.pm,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** Apache.pm 15 Nov 2002 21:47:11 -0000 1.1.1.1
--- Apache.pm 12 Dec 2002 22:50:27 -0000 1.2
***************
*** 561,567 ****
if($apache_pid == 0) {
# child process
! exec $self->apache_exec .
! ' -f ' . $self->temp_dir . '/conf/httpd.conf' .
! ' ' . $self->apache_options . ' -X';
die "HTTP::WebTest: Perl exec statement failed to start Apache: $!";
}
--- 561,568 ----
if($apache_pid == 0) {
# child process
! my $cmd = ($self->apache_exec .
! ' -f ' . $self->temp_dir . '/conf/httpd.conf' .
! ' ' . $self->apache_options . ' -X');
! exec $cmd;
die "HTTP::WebTest: Perl exec statement failed to start Apache: $!";
}
***************
*** 651,655 ****
=head1 RESTRICTIONS / BUGS
! Local file tests probably don't work on Win32 systems.
=head1 AUTHORS
--- 652,658 ----
=head1 RESTRICTIONS / BUGS
! Local file test mode unlikely to work on Win32 systems (at least it
! have never been tested by authors there and nobody confirmed it to
! work).
=head1 AUTHORS
|