Subject: | Apache::test::get_test_params |
get_test_params doesn't handle window's back slashes correctly. The following code works for me as a fix.
*** /tmp/bmathews/test.pm~4-AZQg Tue Sep 24 16:59:24 2002
--- /tmp/bmathews/test.pm4-Amam Tue Sep 24 16:59:24 2002
***************
*** 118,124 ****
print "Skipping.\n";
return;
}
! system "$Config{lns} $httpd t/httpd";
# Default: search for dynamic dependencies if mod_so is present, don't bother otherwise.
my $default = (`t/httpd -l` =~ /mod_so\.c/ ? 'y' : 'n');
--- 118,129 ----
print "Skipping.\n";
return;
}
! if ($Is_Win32) {
! system "$Config{lns} $httpd .\\t\\Apache.exe";
! }
! else {
! system "$Config{lns} $httpd t/httpd";
! }
# Default: search for dynamic dependencies if mod_so is present, don't bother otherwise.
my $default = (`t/httpd -l` =~ /mod_so\.c/ ? 'y' : 'n');