1#!/usr/bin/perl -w
2
3###############################################################################
4
5use Test;
6use strict;
7
8BEGIN
9  {
10  $| = 1;
11  chdir 't' if -d 't';
12  unshift @INC, '../lib';
13  unshift @INC, '../lib/bignum/t' if $ENV{PERL_CORE};
14  plan tests => 26;
15  }
16
17use bigint;
18
19my ($x);
20
21require "infnan.inc";
22
23