dougm 01/10/16 19:56:24
Modified: perl-framework/Apache-Test/lib/Apache TestRun.pm
Log:
make File::Spec::Unix the default for all platforms
Apache likes everything to be in /unix/path/file.ext format
Revision Changes Path
1.59 +7 -0
httpd-test/perl-framework/Apache-Test/lib/Apache/TestRun.pm
Index: TestRun.pm
===================================================================
RCS file:
/home/cvs/httpd-test/perl-framework/Apache-Test/lib/Apache/TestRun.pm,v
retrieving revision 1.58
retrieving revision 1.59
diff -u -r1.58 -r1.59
--- TestRun.pm 2001/10/17 01:30:40 1.58
+++ TestRun.pm 2001/10/17 02:56:24 1.59
@@ -3,6 +3,13 @@
use strict;
use warnings FATAL => 'all';
+BEGIN {
+ #Apache likes everything to be in /unix/path/file.ext format
+ $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 ();