This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Enhance lfs tests: check every seek and sysseek
[perl5.git] / t / lib / filefind.t
CommitLineData
1a3850a5
GA
1#!./perl
2
3BEGIN {
4 chdir 't' if -d 't';
93430cb4 5 unshift @INC, '../lib';
1a3850a5
GA
6}
7
55d729e4 8print "1..2\n";
1a3850a5
GA
9
10use File::Find;
11
12# hope we will eventually find ourself
13find(sub { print "ok 1\n" if $_ eq 'filefind.t'; }, ".");
55d729e4 14finddepth(sub { print "ok 2\n" if $_ eq 'filefind.t'; }, ".");