Change 23638 by [EMAIL PROTECTED] on 2004/12/10 14:58:59
Fix Win32 breakage caused by change 23610
Simply skip the offending tests on Win32. There is no sense in testing
that $Config dir entries appear in @INC because the $Config entries
relate to where perl.exe will be installed (as per INST_DRV/INST_TOP in
win32/Makefile), whereas @INC entries are dynamic, based on where
perlXX.dll is currently located.
Affected files ...
... //depot/perl/lib/Config.t#28 edit
Differences ...
==== //depot/perl/lib/Config.t#28 (text) ====
Index: perl/lib/Config.t
--- perl/lib/Config.t#27~23634~ Thu Dec 9 14:51:03 2004
+++ perl/lib/Config.t Fri Dec 10 06:58:59 2004
@@ -255,6 +255,7 @@
vendorarchexp vendorlibexp vendorlib_stem)) {
my $dir = $Config{$lib};
SKIP: {
+ skip "lib $lib not in [EMAIL PROTECTED] on Win32" if $^O eq 'MSWin32';
skip "lib $lib not defined" unless defined $dir;
skip "lib $lib not set" unless length $dir;
# So we expect to find it in @INC
End of Patch.