summaryrefslogtreecommitdiff
path: root/t/win32
diff options
context:
space:
mode:
authorSteve Hay <SteveHay@planit.com>2004-12-06 15:54:30 +0000
committerSteve Hay <SteveHay@planit.com>2004-12-06 15:54:30 +0000
commitf2e3b69f3d7756d88806b5fbcba98ad72be867ee (patch)
tree446c03284b33714a07a6afac8a58f73e996bc9e5 /t/win32
parent3aa90d208c3bbfc1003a792d87215a5175eaea70 (diff)
downloadperl-f2e3b69f3d7756d88806b5fbcba98ad72be867ee.tar.gz
Fix another Win32 breakage caused by change 23554
p4raw-id: //depot/perl@23618
Diffstat (limited to 't/win32')
-rw-r--r--t/win32/system.t4
1 files changed, 3 insertions, 1 deletions
diff --git a/t/win32/system.t b/t/win32/system.t
index b1906ce73a..fb7a1d1429 100644
--- a/t/win32/system.t
+++ b/t/win32/system.t
@@ -2,7 +2,9 @@
BEGIN {
chdir 't' if -d 't';
- @INC = '../lib';
+ # We need '../../lib' as well as '../lib' because parts of Config are
+ # delay-loaded, after we've chdir()'ed into $testdir.
+ @INC = ('../lib', '../../lib');
# XXX this could be further munged to enable some parts on other
# platforms
unless ($^O =~ /^MSWin/) {