Works (horah!) Well, changes things at least;
server www2.rowe-clan.net:8529 started
apache/404..........Use of uninitialized value in join or string at C:/clean/htt
pd-test/perl-framework/blib/lib/Apache/TestConfig.pm line 513.
apache/404..........dubious
Test returned status 255 (wstat 65280, 0xff00)
DIED. FAILED tests 1-2
Failed 2/2 tests, 0.00% okay
apache/byterange....Use of uninitialized value in join or string at C:/clean/htt
pd-test/perl-framework/blib/lib/Apache/TestConfig.pm line 513.
apache/byterange....dubious
Test returned status 255 (wstat 65280, 0xff00)
DIED. FAILED tests 1-82
Failed 82/82 tests, 0.00% okay
apache/getfile......Use of uninitialized value in join or string at C:/clean/htt
pd-test/perl-framework/blib/lib/Apache/TestConfig.pm line 513.
apache/getfile......dubious
Test returned status 255 (wstat 65280, 0xff00)
DIED. FAILED tests 1-84
Failed 84/84 tests, 0.00% okay
What's with status 255? I dunno. Line 513;
join ':', $$resolve, $self->port($module);
???
----- Original Message -----
From: "Doug MacEachern" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, October 16, 2001 9:00 PM
Subject: Re: Outch(es) on Win32 perl-framework
> bill, try the patch below. it should force File::Spec functions and
> anything that uses them (Apache::Test*, File::Find, etc.) to use unix
> /path/file.ext conventions.
>
> Index: Apache-Test/lib/Apache/TestRun.pm
> ===================================================================
> RCS file:
> /home/cvs/httpd-test/perl-framework/Apache-Test/lib/Apache/TestRun.pm,v
> retrieving revision 1.58
> diff -u -r1.58 TestRun.pm
> --- Apache-Test/lib/Apache/TestRun.pm 2001/10/17 01:30:40 1.58
> +++ Apache-Test/lib/Apache/TestRun.pm 2001/10/17 01:47:55
> @@ -3,6 +3,12 @@
> use strict;
> use warnings FATAL => 'all';
>
> +BEGIN {
> + $INC{'File/Spec.pm'} = __FILE__;
> + require File::Spec::Unix;
> + @File::Spec::ISA = qw(File::Spec::Unix);
> +}
> +
> use Apache::TestConfig ();
> use Apache::TestConfigC ();
> use Apache::TestRequest ();
>
>
>
>