blob: a73fd123372e2c49861318cc583f9ad3b312f225 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/usr/bin/perl -w
use strict;
use Test::More tests => 3619;
BEGIN { unshift @INC, 't'; }
use Math::BigInt lib => 'BareCalc';
print "# ",Math::BigInt->config()->{lib},"\n";
use vars qw ($class $try $x $y $f @args $ans $ans1 $ans1_str $setup $CL);
$class = "Math::BigInt";
$CL = "Math::BigInt::BareCalc";
my $version = '1.84'; # for $VERSION tests, match current release (by hand!)
require 't/bigintpm.inc'; # perform same tests as bigintpm
|