summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>2005-03-22 14:03:12 +0000
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2005-03-22 14:03:12 +0000
commitb04f6d364dc3b26d2309e24417e692690629b145 (patch)
tree04d894cdc82307e45056d5444bd4466152fde502 /ext
parent05fb677a707541c064a1e603c5ed94d6d12db486 (diff)
downloadperl-b04f6d364dc3b26d2309e24417e692690629b145.tar.gz
Upgrade to PathTools 3.05
p4raw-id: //depot/perl@24069
Diffstat (limited to 'ext')
-rw-r--r--ext/Cwd/Changes13
-rw-r--r--ext/Cwd/t/cwd.t4
2 files changed, 15 insertions, 2 deletions
diff --git a/ext/Cwd/Changes b/ext/Cwd/Changes
index bc6ffde0bb..14f3958770 100644
--- a/ext/Cwd/Changes
+++ b/ext/Cwd/Changes
@@ -1,5 +1,18 @@
Revision history for Perl distribution PathTools.
+3.05 Mon Feb 28 07:22:58 CST 2005
+
+ - Fixed a bug in fast_abs_path() on Win32 in which forward- and
+ backward-slashes were confusing things. [demerphq]
+
+ - Failure to load the XS code in Cwd is no longer a fatal error
+ (though failure to compile it is still a fatal error in the build
+ process). This lets Cwd work under miniperl in the core. [Rafael
+ Garcia-Suarez]
+
+ - In the t/cwd.t test, don't enforce loading from blib/ if we're
+ testing in the perl core. [Rafael Garcia-Suarez]
+
3.04 Sun Feb 6 17:27:38 CST 2005
- For perls older than 5.006, the HAS_GETCWD symbol is not available,
diff --git a/ext/Cwd/t/cwd.t b/ext/Cwd/t/cwd.t
index 00b8451a6d..280394b986 100644
--- a/ext/Cwd/t/cwd.t
+++ b/ext/Cwd/t/cwd.t
@@ -26,8 +26,8 @@ $tests += 4 if $EXTRA_ABSPATH_TESTS;
plan tests => $tests;
SKIP: {
- skip "not suitable for core perl testing", 1 if $ENV{PERL_CORE};
- like $INC{'Cwd.pm'}, qr{blib}i, "Cwd should be loaded from blib/ during testing";
+ skip "no need to check for blib/ in the core", 1 if $ENV{PERL_CORE};
+ like $INC{'Cwd.pm'}, qr{blib}i, "Cwd should be loaded from blib/ during testing";
}
my $IsVMS = $^O eq 'VMS';