Skip to content

Commit 2990c00

Browse files
committed
Remove test for Win32::GetLongPathName($ENV{SystemRoot})
1 parent d4b74ae commit 2990c00

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

Changes

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
Revision history for the Perl extension Win32.
22

3+
0.42 [2011-01-06]
4+
- remove brittle test for Win32::GetLongPathName($ENV{SYSTEMROOT})
5+
which will fail if the case of the environment value doesn't
6+
exactly match the case of the directory name on the filesystem.
7+
38
0.41 [2010-12-10]
49
- Fix Win32::GetChipName() to return the native processor type when
510
running 32-bit Perl on 64-bit Windows (WOW64). This will also

META.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
--- #YAML:1.0
22
name: Win32
33
abstract: Interfaces to some Win32 API Functions
4-
version: 0.41
4+
version: 0.42
55
author:
66
- Jan Dubois <[email protected]>
77
license: perl

Win32.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ package Win32;
88
require DynaLoader;
99

1010
@ISA = qw|Exporter DynaLoader|;
11-
$VERSION = '0.41';
11+
$VERSION = '0.42';
1212
$XS_VERSION = $VERSION;
1313
$VERSION = eval $VERSION;
1414

t/GetLongPathName.t

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ if ($drive) {
3434
for (@paths) {
3535
s/^c:/$drive/;
3636
}
37-
push @paths, $ENV{SYSTEMROOT} if $ENV{SYSTEMROOT};
3837
}
3938
my %expect;
4039
@expect{@paths} = map { my $x = $_;

0 commit comments

Comments
 (0)