summaryrefslogtreecommitdiff
path: root/t/comp
diff options
context:
space:
mode:
authorDave Mitchell <davem@fdisolutions.com>2004-03-26 18:53:09 +0000
committerDave Mitchell <davem@fdisolutions.com>2004-03-26 18:53:09 +0000
commit0f94e4a979939cb2b1eeb2199cf16a3fe85e8ddb (patch)
tree1775c72ec4018e0d97ce8732001f46fd1282585c /t/comp
parent4c885f753522207c2fe6ec9251d8d0843e5b9f58 (diff)
downloadperl-0f94e4a979939cb2b1eeb2199cf16a3fe85e8ddb.tar.gz
fix for change #22594; if using test.pl, must tell perl where to
find it! p4raw-link: @22594 on //depot/perl: dfa41748806263fb8b5d5fcb051bd36be96fe93c p4raw-id: //depot/perl@22596
Diffstat (limited to 't/comp')
-rw-r--r--t/comp/hints.t6
1 files changed, 6 insertions, 0 deletions
diff --git a/t/comp/hints.t b/t/comp/hints.t
index ce923cc0d7..f00bb6a893 100644
--- a/t/comp/hints.t
+++ b/t/comp/hints.t
@@ -2,6 +2,12 @@
# Tests the scoping of $^H and %^H
+BEGIN {
+ chdir 't' if -d 't';
+ @INC = qw(. ../lib);
+}
+
+
BEGIN { print "1..15\n"; }
BEGIN {
print "not " if exists $^H{foo};