Skip to content

Commit 118e306

Browse files
committed
vax-netbsd: no PL_inf/PL_nan to export
1 parent c6303df commit 118e306

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

t/porting/globvar.t

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,15 @@ foreach my $file (map {$_ . $Config{_o}} qw(globals regcomp)) {
6161
close $fh or die "Problem running nm $file";
6262
}
6363

64+
my $non_ieee_fp = ($Config{doublekind} == 9 ||
65+
$Config{doublekind} == 10 ||
66+
$Config{doublekind} == 11);
67+
68+
if ($non_ieee_fp) {
69+
$skip{PL_inf}++;
70+
$skip{PL_nan}++;
71+
}
72+
6473
foreach (sort keys %exported) {
6574
SKIP: {
6675
skip("We dont't export '$_' (Perl not built with this enabled?)",1) if $skip{$_};

0 commit comments

Comments
 (0)