blob: 80ac811d2082968dd8515584f64fa70f6f641b18 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!./perl
BEGIN {
# Can't chdir in BEGIN before FindBin runs, as it then can't find us.
@INC = -d 't' ? 'lib' : '../lib';
}
print "1..1\n";
use FindBin qw($Bin);
print "# $Bin\n";
if ($^O eq 'MacOS') {
print "not " unless $Bin =~ m,:lib:$,;
} else {
print "not " unless $Bin =~ m,[/.]lib\]?$,;
}
print "ok 1\n";
|