diff options
author | Tels <nospam-abuse@bloodgate.com> | 2002-08-14 00:02:09 +0200 |
---|---|---|
committer | hv <hv@crypt.org> | 2002-08-22 22:29:45 +0000 |
commit | b4bc5691c8dfad19b52d103e3b12af9342fcea38 (patch) | |
tree | 23ba012d3637ec64db0f0a50ac3477840a8e727b /lib/bignum/t/bninfnan.t | |
parent | e1e1143f887ddae0f16d3743c74922bf4cc42ade (diff) | |
download | perl-b4bc5691c8dfad19b52d103e3b12af9342fcea38.tar.gz |
bignum-0.12 updates from:
Subject: [ANNOUCNE] Big Math::Big* update
Message-Id: <200208132121.g7DLLRV21408@crypt.org>
p4raw-id: //depot/perl@17758
Diffstat (limited to 'lib/bignum/t/bninfnan.t')
-rw-r--r-- | lib/bignum/t/bninfnan.t | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/lib/bignum/t/bninfnan.t b/lib/bignum/t/bninfnan.t new file mode 100644 index 0000000000..d097215b9e --- /dev/null +++ b/lib/bignum/t/bninfnan.t @@ -0,0 +1,21 @@ +#!/usr/bin/perl -w + +############################################################################### + +use Test; +use strict; + +BEGIN + { + $| = 1; + chdir 't' if -d 't'; + unshift @INC, '../lib'; + plan tests => 26; + } + +use bignum; + +my ($x); + +require "infnan.inc"; + |