This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
avoid initializing GvCV slot for autovivified filehandles
[perl5.git]
/
t
/
lib
/
filefind.t
1
#!./perl
2
3
BEGIN {
4
chdir 't' if -d 't';
5
unshift @INC, '../lib';
6
}
7
8
print "1..2\n";
9
10
use File::Find;
11
12
# hope we will eventually find ourself
13
find(sub { print "ok 1\n" if $_ eq 'filefind.t'; }, ".");
14
finddepth(sub { print "ok 2\n" if $_ eq 'filefind.t'; }, ".");