Skip Menu |

This queue is for tickets about the Apache-Test CPAN distribution.

Report information
The Basics
Id: 1566
Status: resolved
Priority: 0/
Queue: Apache-Test

People
Owner: Nobody in particular
Requestors: bmathews [...] wilcoxassoc.com
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: (no value)
Fixed in: (no value)



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');
This issue is seven years old, and I cannot find any trace of the code in the suggested patch. I took a look on the mod_perl list, and it looks like this hasn't been an issue for anyone else. I'm going to close this out.