summaryrefslogtreecommitdiff
path: root/t/pod/find.t
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2001-08-12 20:17:32 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-08-12 20:17:32 +0000
commit22ea838f62453c7a2f8000a23c820b7a34636711 (patch)
treec97b11de423f35071e7f1ec0d2a996102aecb080 /t/pod/find.t
parent4b3b956a126d728a1e0e01e3e39db2489fd761a8 (diff)
downloadperl-22ea838f62453c7a2f8000a23c820b7a34636711.tar.gz
Relic in op.c (no regex feature should depend on the utf8 pragma),
and a test tweak. p4raw-id: //depot/perl@11650
Diffstat (limited to 't/pod/find.t')
-rw-r--r--t/pod/find.t8
1 files changed, 6 insertions, 2 deletions
diff --git a/t/pod/find.t b/t/pod/find.t
index bb6e9ba205..1bac930f56 100644
--- a/t/pod/find.t
+++ b/t/pod/find.t
@@ -2,8 +2,12 @@
# Author: Marek Rouchal <marek@saftsack.fs.uni-bayreuth.de>
BEGIN {
- chdir 't' if -d 't';
- @INC = '../lib';
+ chdir 't' if -d 't';
+ # The ../../../../../lib is for finding lib/utf8.pm
+ # when running under all-utf8 settings (pod/find.t)
+ # does not directly require lib/utf8.pm but regular
+ # expressions will need that.
+ @INC = qw(../lib ../../../../../lib);
}
$| = 1;