p4raw-id: //depot/perl@23248
Revision history for Perl extension Cwd.
+2.21 Tue Aug 31 22:50:14 CDT 2004
+
+ - Removed "NO_META" from the Makefile.PL, since I'm not building the
+ distribution with MakeMaker anyway. [Rohan Carly]
+
+ - Only test _perl_abs_path() on platforms where it's expected to work
+ (platforms with '/' as the directory separator). [Craig A. Berry]
+
2.20 Thu Jul 22 08:23:53 CDT 2004
- On some implementations of perl on Win32, a memory leak (or worse?)
my $tests = 24;
my $EXTRA_ABSPATH_TESTS = $ENV{PERL_CORE} || $ENV{TEST_PERL_CWD_CODE};
+# _perl_abs_path() currently only works when the directory separator
+# is '/', so don't test it when it won't work.
+$EXTRA_ABSPATH_TESTS &= $Config{prefix} =~ m/\//;
$tests += 3 if $EXTRA_ABSPATH_TESTS;
plan tests => $tests;
package Cwd;
-$VERSION = $VERSION = '2.20';
+$VERSION = $VERSION = '2.21';
=head1 NAME