This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
INADDR_ANY INADDR_BROADCAST INADDR_LOOPBACK INADDR_NONE
[perl5.git] / t / lib / checktree.t
1 #!./perl
2
3 BEGIN {
4     chdir 't' if -d 't';
5     @INC = '../lib';
6 }
7
8 print "1..1\n";
9
10 use File::CheckTree;
11
12 # We assume that we run from the perl "t" directory.
13
14 validate q{
15     lib              -d || die
16     lib/checktree.t  -f || die
17 };
18
19 print "ok 1\n";